/*
    jwf, 2007-10-07
    in http://blog.fcon21.biz/

    <script type="text/javascript" src="/script/form-93-246319693-p75.en.js"></script>
*/

function checknlform1_p75 () {
   var errmsg = 'Please, check!\n';
   var count = 1;
   if ( document.nlform1_p75.name.value == "" ) {
     errmsg = errmsg.concat(count + '. First Name.\n');
     count++;   }
   if ( document.nlform1_p75.from.value.indexOf("@") == -1 ) {
     errmsg = errmsg.concat(count + '. Email address. It should look like\n\'johndoe@example.com\' for example.\n');
     count++;   }
   if ( count == 1 ) {
     return true;
   } else {
     alert(errmsg);
     return false;   }
 }

document.write("<div style=\"margin: 10px 0; text-align: center;\">\n<form method=\"post\" name=\"nlform1_p75\" action=\"http://www.aweber.com/scripts/addlead.pl\" onsubmit=\"return checknlform1_p75();\" style=\"margin:0;\">\n <p style=\"font-size:x-small;line-height:1.4em;text-align:center;margin:0;\">\n  <input type=\"hidden\" name=\"meta_web_form_id\" value=\"246319693\" \/>\n  <input type=\"hidden\" name=\"meta_split_id\" value=\"\" \/>\n  <input type=\"hidden\" name=\"unit\" value=\"news-fcon21-biz\" \/>\n  <input type=\"hidden\" name=\"redirect\" value=\"http://www.fcon21.biz/thanks-news\" \/>\n  <input type=\"hidden\" name=\"meta_redirect_onlist\" value=\"http://www.fcon21.biz/thanks-news?ol\" \/>\n  <input type=\"hidden\" name=\"meta_adtracking\" value=\"blog-p75\" \/>\n  <input type=\"hidden\" name=\"meta_message\" value=\"1\" \/>\n  <input type=\"hidden\" name=\"meta_required\" value=\"name,from\" \/>\n  <input type=\"hidden\" name=\"meta_forward_vars\" value=\"1\" \/>\n <\/p>\n<table width=\"100%\" style=\"line-height: 1.4em; margin: 0; padding: 5px; background-color: #d8d8f0; border: none;\">\n <tr>\n  <td width=\"50%\" align=\"right\">Your First Name:<\/td>\n  <td width=\"50%\" align=\"left\"><input type=\"text\" name=\"name\" value=\"\" size=\"20\" \/>\n <\/tr>\n <tr>\n  <td align=\"right\">Your Primary Email:<\/td>\n  <td align=\"left\"><input type=\"text\" name=\"from\" value=\"\" size=\"20\" \/><\/td>\n <\/tr>\n <tr><td align=\"center\" colspan=\"2\"><input type=\"submit\" name=\"submit\" value=\"Sign Up!\" id=\"nlsubm1\" style=\"font-weight:bold; margin:5px 0; color: #008000;\" \/><\/td>\n <\/tr>\n<\/table>\n<\/form>\n<\/div>\n");

