function contactForm(){
	var content;
	content = '<div id="contactFormDIV" style="display: none;"><form name="contactForm" action="#" onsubmit="sendEmail(this.visitor.value, this.visitormail.value, this.comments.value, navigator.userAgent); return false"><p><p><P>Name:<br /><input type="text" name="visitor" size="25" maxlength="80" /></p><p>Email Address:<br /><input type="text" name="visitormail" size="25" maxlength="80" /></p><p>Comments:<br /><textarea name="comments" rows="10" cols="40"></textarea></p><p><input type="submit" value="Submit Form""/>&nbsp;&nbsp;<input type="reset" value="Clear Form" />&nbsp;&nbsp;<input type="button" value="Close Form" onClick="javascript:toggleDIVVisibility(\'contactFormDIV\', 0);window.scrollBy(0, -500);"></p></form></div>';	
	document.write(content);
}
contactForm();

