var blah = "";

blah += "<form action=\"http://www.chrisblackburn.com/cgi-bin/cgiemail/csb.txt\" method=\"POST\">";
blah += "<input type=\"hidden\" name=\"success\" value=\"http://www.chrisblackburn.com/success.php\">";

blah += "<center>";
blah += "<table cellpadding=\"5\" cellspacing=\"0\" border=\"0\">";
blah += "<tr><td width=\"100\">Name:</td><td><input type=\"text\" name=\"name\" size=\"30\"></td></tr>";
blah += "<tr><td>Email Address:</td><td><input type=\"text\" name=\"required-email\" size=\"30\"></td></tr>";
blah += "<tr><td>Subject:</td><td><input type=\"text\" name=\"subject\" size=\"30\"></td></tr>";
blah += "</table><br />";
blah += "Email address is required.<br />Otherwise, I won't have any way of responding!<br />";
blah += "&nbsp;<br />";
blah += "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">";
blah += "<tr><td>";
blah += "Comments:<br />";
blah += "<img src=\"images/clear.gif\" width=\"1\" height=\"5\"><BR>";
blah += "<textarea name=\"comments\" rows=\"8\" cols=\"38\"></textarea>";
blah += "</td></tr>";
blah += "</table>";
blah += "<p><input type=\"submit\" value=\"Submit Message\"> <input type=\"reset\" value=\"Reset\">";
blah += "</center>";
blah += "</form>";

document.getElementById("spot").innerHTML = blah;