document.write('<table border="0" cellpadding="0" cellspacing="0" width="70%">');
document.write('<tr>');
document.write('<td align="right" width="300" nowrap><font size=2>');
document.write('First Name <input type="text" size="20" name="FirstName" value="' + FirstName + '" onChange="newCookie(this.name,this.value);">');var FirstName = (thisCookie) ? getCookie("FirstName") : " ";
document.write('</font></td>');
document.write('<td align="right" width="300" nowrap><font size=2>');
document.write('Last Name <input type="text" size="20" name="LastName" value="' + LastName + '" onChange="newCookie(this.name,this.value);">');var LastName = (thisCookie) ? getCookie("LastName") : " ";
document.write('</font></td>');

document.write('</tr><tr>');
document.write('<td align="right" width="300" nowrap><font size=2>');
document.write('Company <input type="text" size="20" name="Company" value="' + Company + '" onChange="newCookie(this.name,this.value);">');var Company = (thisCookie) ? getCookie("Company") : " ";
document.write('</font></td>');
document.write('<td align="right" width="300" nowrap><font size=2>');
document.write('City/State<input type="text" size="7" name="City" value="' + City + '" onChange="newCookie(this.name,this.value);">');var City = (thisCookie) ? getCookie("City") : " ";
document.write('<input type="text" size="7" name="State" value="' + State + '" onChange="newCookie(this.name,this.value);">');var State = (thisCookie) ? getCookie("State") : " ";
document.write('</font></td>');

document.write('</tr><tr>');
document.write('<td align="right" width="300" nowrap><font size=2>');
document.write('Phone <input type="text" size="20" name="Phone" value="' + Phone + '" onChange="newCookie(this.name,this.value);">');var Phone = (thisCookie) ? getCookie("Phone") : " ";
document.write('</font></td>');
document.write('<td align="right" width="300" nowrap><font size=2>');
document.write('email <input type="text" size="20" name="email" value="' + email + '" onChange="newCookie(this.name,this.value);">');var email = (thisCookie) ? getCookie("email") : " ";
document.write('</font></td>');

document.write('</tr>');
document.write('</table>');






