document.write('<table border="0" cellpadding="0" cellspacing="0" width="70%">');
document.write('<tr>');
document.write('<td align="right" width="300" nowrap><small>');
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('</small></td>');
document.write('<td align="right" width="300" nowrap><small>');
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('</small></td>');

document.write('</tr><tr>');
document.write('<td align="right" width="300" nowrap><small>');
document.write('Title/Position <input type="text" size="20" name="Title" value="' + Title + '" onChange="newCookie(this.name,this.value);">');var Title = (thisCookie) ? getCookie("Title") : " ";
document.write('</small></td>');
document.write('<td align="right" width="300" nowrap><small>');
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('</small></td>');

document.write('</tr><tr>');
document.write('<td align="right" width="300" nowrap><small>');
document.write('Address <input type="text" size="20" name="Address" value="' + Address + '" onChange="newCookie(this.name,this.value);">');var Address = (thisCookie) ? getCookie("Address") : " ";
document.write('</small></td>');
document.write('<td align="right" width="300" nowrap><small>');
document.write('City <input type="text" size="20" name="City" value="' + City + '" onChange="newCookie(this.name,this.value);">');var City = (thisCookie) ? getCookie("City") : " ";
document.write('</small></td>');

document.write('</tr><tr>');
document.write('<td align="right" width="300" nowrap><small>');
document.write('State <input type="text" size="20" name="State" value="' + State + '" onChange="newCookie(this.name,this.value);">');var State = (thisCookie) ? getCookie("State") : " ";
document.write('</small></td>');

document.write('<td align="right" width="300" nowrap><small>');
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('</small></td>');

document.write('</tr><tr>');
document.write('<td align="right" width="300" nowrap><small>');
document.write('Zip/Postal Code <input type="text" size="20" name="Zip" value="' + Zip + '" onChange="newCookie(this.name,this.value);">');var Zip = (thisCookie) ? getCookie("Zip") : " ";
document.write('</small></td>');

document.write('<td align="right" width="300" nowrap><small>');
document.write('Fax <input type="text" size="20" name="Fax" value="' + Fax + '" onChange="newCookie(this.name,this.value);">');var Fax = (thisCookie) ? getCookie("Fax") : " ";
document.write('</small></td>');


document.write('</tr><tr>');
document.write('<td align="right" width="300" nowrap><small>');
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('</small></td>');
document.write('<td align="right" width="300" nowrap><small>');
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('</small></td>');

document.write('</tr>');
document.write('</table>');





