Hi have been busting my butt with one of my real estate sites to get a contact form that I can use in HTML format. They finally got it right but won't help me with getting a new window to open when someone clicks submit. I don't want it to to take the interested consumer away from the page they are on but rather open a new window allowing them to stay on my website. I also wouldn't be opposed to removing the phone # field.
Here is the code I am working with. My HTML coding knowledge ends at changing text color and font so please help me if you can.
Thanks a TON!!!
<div style="width: 300px; height: 210px; padding: 10px;">
<style type="text/css">
.input_1{font-size: 11px; width: 120px; height: 20px;}
.input_4{font-size: 11px; width: 32px; height: 20px;}
.input_5{font-size: 11px; width: 47px; height: 20px;}
.lb_right{text-align: right;font-weight: bold;}
table{font-size: .9em;}
</style>
<div style="background: #d9d9d9; ">
<div style="padding: 10px; text-align: center; background-color: #02408c;">
<span style="color: yellow; font-size: 16px; font-weight: bold;">SEARCH LIKE AN AGENT!</span><br/>
<span style="color: white; font-size: 14px; font-weight: bold;">GET A FREE LISTINGBOOK ACCOUNT</span>
</div>
<div style="font-size: .75em; font-family: arial; margin: 5px 15px 5px 15px; text">
<form id="form" method="post" action="http://teamschmidt.listingbook.com/?&page=home" enctype="multipart/form-data">
<input id="formid" name="formid" value="form" type="hidden" />
<span style="">Instantly get a FREE Listingbook account from Brandon and Russ Schmidt.</span><br>
<div style="margin: 10px 0 0 0;">
<table style="margin-left: auto; margin-right: auto;"><tr>
<td class="lb_right"><strong class="txt_7">First Name:</strong></td>
<td><input id="first_name" name="first_name" class="input_1" value="" type="text" /></td>
</tr><tr>
<td class="lb_right"><strong class="txt_7">Last Name:</strong></td>
<td><input id="last_name" name="last_name" class="input_1" value="" type="text" /></td>
</tr><tr>
<td class="lb_right"><strong class="txt_7">E-mail:</strong></td>
<td><input id="email" name="email" class="input_1" value="" type="text"></td>
</tr><tr>
<td class="lb_right"><strong class="txt_7">Phone:</strong></td>
<td><input id="phone_1" name="phone_1" class="input_4" maxlength="3" value="" type="text">-<input id="phone_2" name="phone_2" class="input_4" maxlength="3" value="" type="text">-<input id="phone_3" name="phone_3" class="input_5" maxlength="4" value="" type="text"></td>
</tr><tr>
<td></td><td><input type="submit" name="submit" value="Submit" /></td>
</tr>
</table>
</div>
</form>
</div>
</div>
</div>