<script language="javascript">
<!--
function Make() {
	my = window.document;
	name = my.form1.name.value
	mail = my.form1.mail.value
	comments = my.form1.comm.value
	my.open();
	my.write("<html><body bgcolor='#ffe4c4' ><center>");
	my.write("<font size=6 color='red'>Thanks!</font><p>");
	my.write("" + name + ", check to make sure your information is correct and then hit Submit.");
	my.write("<p><table border=1><tr><td><font color='red'>Your Name:</font>  " + name + "<br><font color='red'>Your E-mail:</font>  " + mail + "<br><font color='red'>Your Comments:</font> " + comments + "</td></tr></table>");
	my.write("<p><form method=post action='mailto:"+mail+"' enctype='text/plain'><input type=submit value=Submit>");
	my.write("<input type=hidden name=Name value='" + name + "'><input type=hidden name=E-mail value='" + mail + "'><input type=hidden name=Comments value='" + comments + "'></form></center></body></html>");
}
//-->
</script>
</head>
<center><h1>View Form Contents</h1></center>
<p>This script allows the visitor to confirm that the contents of a form are correct before it is sent.</p>
<center><form name="form1"><table><tr><td>Your Name: </td><td><input type=text name="name" size="30,1"></td></tr><tr><td>Your E-mail:</td><td> <input type=text size="30,1" name="mail"></td></tr><tr><td valign="middle">Your Comments:</td><td><textarea cols="40" rows="3" name="comm"></textarea></td></tr><tr><td colspan="2" align="center"><input type="reset" value="Clear"> &nbsp;&nbsp;<input type=button value="Verify" onClick="Make()">
</td></tr></table></form></center><hr>
