document.write ('<form name="form1" method="post" action="contactsent.php"> ');
document.write ('<table width="60%" border="0" cellpadding="5"> ');
document.write ('<tr> ');
document.write ('<td align="right">Your name</td> ');
document.write ('<td><input type="text" name="name"></td> ');
document.write ('</tr> ');
document.write ('<tr> ');
document.write ('<td align="right">Your e-mail</td> ');
document.write ('<td><input type="text" name="email"></td> ');
document.write ('</tr> ');
document.write ('<tr> ');
document.write ('<td align="right">Question / Comment </td> ');
document.write ('<td><textarea name="comment"></textarea></td> ');
document.write ('</tr> ');
document.write ('<tr> ');
document.write ('<td colspan="2" align="center"><input type="submit" name="Submit" value="Submit"></td> ');
document.write ('</tr> ');
document.write ('</table> ');
document.write ('</form> ');
