requestForm();


function requestForm () {
    document.write("<form id='newsletter' action='mailto:news-register@trumpetsoftruth.com' method='POST' enctype='text/plain' > ");
    document.write("<table style='background-color: #d0d0d0' >");
    document.write("<tr> ");
    document.write("<td style='font-size: 10px'> Fill in Your Name: </td>");
    document.write("<td><input style='width: 300px; color: blue; font-style: italic' type='text' name='name' value='Your Name'></td></tr>");
    document.write("<tr> ");
    document.write("<td style='font-size: 10px'> Fill in Your E-MAIL address to register for the &quot;Trumpets News&quot; Newsletter: </td>");
    document.write("<td><input style='width: 300px; color: blue; font-style: italic' type='text' name='email' value='email address'></td></tr>");
    document.write("<tr> ");
    document.write("<td colspan=2 align=center><input type='submit' style='width: 100%' name='request' value='Click Here To REGISTER'> </td></tr>");
    document.write("</table><br>");
    document.write("</form>");
}


function requestNews() {
   document.write("<HTML>");
   document.write("<HEAD>");
   document.write("  <meta http-equiv='REFRESH' content='5;url=http://www.trumpetsoftruth.com/news.html'>  ");
   document.write("</HEAD>");
   document.write("<BODY><CENTER>");
   document.write("<h2>Thank You for your submission to the &quot;Trumpets News&quot; </h2>");
   document.write("You will be added to the list and will receive the newsletter via email<br /><br />");
   document.write("<a href='news.html'>Click to Return to News Page</a>");
   document.write("</CENTER></BODY>");
   document.write("</HTML>");
}
