document.write('<table border="0" cellpadding="0" cellspacing="0" width="50%">');
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 ('</tr><tr>');
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></tr>');
document.write('<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 ('</tr><tr>');
document.write('<td align="right" width="300" nowrap><font size=2>');
document.write('Country <input type="text" size="20" name="Country" value="' + Country + '" onChange="newCookie(this.name,this.value);">');var Country = (thisCookie) ? getCookie("Country") : " ";
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 ('</tr><tr>');
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>');






