document.write ('<div id="contactarea">');
document.write ('<form name="contactform" id="contactform">');
document.write ('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write ('<tr>');
document.write ('<td>Name*</td>');
document.write ('<td><input name="name" type="text" id="name" /></td>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td>Email*</td>');
document.write ('<td><input name="email" type="text" id="email" /></td>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td>Subject*</td>');
document.write ('<td><input name="subject" type="text" id="subject" /></td>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td>Message*</td>');
document.write ('<td><textarea name="msg" id="msg"></textarea></td>');
document.write ('</tr>');
document.write ('<tr>');
document.write ('<td></td>');
document.write ('<td><input type="reset" name="Reset" value="Reset" id="resetbutton" />&nbsp;<input type="button" value="Send Email" name="send" onClick="sendemail();" id="send" /><br /><br  />* Marks a required field </td>');
document.write ('</tr>');
document.write ('</table>');
document.write ('</form>');
document.write ('</div>');