
function writeform(fn){if (fn=="*"){
document.write("<form action=\"/cgi-bin/AddComment2\" method=\"post\">");
document.write("<table>");
document.write("<tr><td rowspan=\"2\">");
document.write("<div style=\"background-color: #FFB; border: 4px outset #999; padding: 2px\">");
document.write("<span style=\"text-decoration: underline\">Select a guest book:</span><br />");
document.write("<input type=\"radio\" name=\"book\" value=\"Gen-Comments\" />Genealogy<br />");
document.write("<input type=\"radio\" name=\"book\" value=\"Guildwood-Comments\" />Guildwood Village<br />");
document.write("<input type=\"radio\" name=\"book\" value=\"Kingston-Comments\" />Kingston<br />");
document.write("<input type=\"radio\" name=\"book\" value=\"North-Comments\" />Northern Ontario<br />");
document.write("<input type=\"radio\" name=\"book\" value=\"Tor-Comments\" />Toronto<br />");
document.write("<input type=\"radio\" name=\"book\" value=\"TrainsComments\" />Trains<br />");
document.write("<input type=\"radio\" name=\"book\" value=\"Guestbook\" />Anything else");
document.write("<input type=\"hidden\" name=\"barf\" value=\"123\" />");
document.write("</div>");
document.write("</td>");
document.write("<td align=\"right\">Your name:</td>");
document.write("<td><input type=\"text\" name=\"name\" maxlength=\"50\" />");
document.write("</td></tr>");
document.write("<tr><td align=\"right\">Your city:</td>");
document.write("<td><input type=\"text\" name=\"city\" maxlength=\"50\" />");
document.write("</td></tr>");
document.write("<tr><td colspan=\"3\">");
document.write("Your comments:<br/>");
document.write("<textarea name=\"text\" cols=\"60\" rows=\"12\" wrap=\"virtual\"></textarea>");
document.write("</td></tr>");
document.write("<tr><td colspan=\"2\">");
document.write("<input type=\"submit\" name=\"comm\" value=\"Submit\" />");
document.write("<input type=\"submit\" name=\"comm\" value=\"Preview\" />");
document.write("<input type=\"reset\" value=\"Reset\" />");
document.write("</td></tr></table>");
document.write("</form>");
}else{
document.write("<form action=\"/cgi-bin/AddComment2\" method=\"post\">");
document.write("<input type=\"hidden\" name=\"book\" value=\""+fn+"\" />");
document.write("<input type=\"hidden\" name=\"barf\" value=\"123\" />");
document.write("<table>");
document.write("<tr><td align=\"right\">Your name:</td>");
document.write("<td><input type=\"text\" name=\"name\" maxlength=\"50\" />");
document.write("</td></tr>");
document.write("<tr><td align=\"right\">Your city:</td>");
document.write("<td><input type=\"text\" name=\"city\" maxlength=\"50\" />");
document.write("</td></tr>");
document.write("<tr><td colspan=\"2\">");
document.write("Your comments:<br/>");
document.write("<textarea name=\"text\" cols=\"60\" rows=\"12\" wrap=\"virtual\"></textarea>");
document.write("</td></tr>");
document.write("<tr><td>");
document.write("<input type=\"submit\" name=\"comm\" value=\"Submit\" />");
document.write("<input type=\"submit\" name=\"comm\" value=\"Preview\" />");
document.write("<input type=\"reset\" value=\"Reset\" />");
document.write("</td></tr>");
document.write("</table>");
document.write("</form>");
}}

