<!--
function DisplaySubmitFeatured() {
 document.write("    <tr>");
 document.write("     <td width='468' height='75' colspan='3' background='http://www.thenetsgreatest.com/images/r2t2.gif'>");
 document.write("      <table border='0' cellspacing='0' cellpadding='7' width='424'>");
 document.write("       <tr>");
 document.write("        <td width='212'>");
 document.write("         <img src='/images/white1x1.gif' width='1' height='23'><br><div class='imgleft' style='width:32; height:32'><img src='/images/speedtest32.gif' width='32' height='32'></div><font size='2'><b><div style='height:19'><a href='http://speedtestpro.net'>Speed Test</a></div></b></font>FREE Maximum Speed Testing. Full Bandwidth speed test Meter.");
 document.write("        </td>");
 document.write("        <td width='212'>");
 document.write("         <img src='/images/white1x1.gif' width='1' height='23'><br><div class='imgleft' style='width:32; height:32'><img src='/images/BBMonitor-Icon-32x32p.gif' width='32' height='32'></div><font size='2'><b><div style='height:19'><a href='http://www.absolutefuturity.com/BBMonitor.htm'>BBMonitor</a></div></b></font>Pro Bandwidth Meter. Check your Internet connection speeds 24hrs/day.");
 document.write("        </td>");
 document.write("       </tr>");
 document.write("      </table>");
 document.write("     </td>");
 document.write("    </tr>");
 document.write("    <tr>");
 document.write("     <td width='468' height='51' colspan='3' background='http://www.thenetsgreatest.com/images/r3t2.gif'>");
 document.write("      <table border='0' cellspacing='0' cellpadding='7' width='424'>");
 document.write("       <tr>");
 document.write("        <td width='212'>");
 document.write("         <div class='imgleft' style='width:32; height:32'><img src='/images/Rapid-Emailer-Icon-32x32p.gif' width='32' height='32'></div><font size='2'><b><div style='height:19'><a href='http://www.thenetsgreatest.com/Internet/E-mail/E-mail-Clients/bulk-emailer/Rapid-Emailer/'>Rapid-Emailer</a></div></b></font>Email Campaign Manager. Keep in touch with all your contacts.");
 document.write("        </td>");
 document.write("        <td width='212'>");
 document.write("         <div class='imgleft' style='width:32; height:32'><img src='/images/Desktop-It%20Note%20Icon.gif' width='32' height='32'></div><font size='2'><b><div style='height:19'><a href='http://www.Desktop-3D-Notes.com'>Desktop-3D Notes</a></div></b></font>Sticky Notes for your PC. 3D look and feel. Send Notes using the internet.");
 document.write("        </td>");
 document.write("       </tr>");
 document.write("      </table>");
 document.write("     </td>");
 document.write("    </tr>");
 document.write("    <tr>");
 document.write("    <td width='468' height='17' colspan='3' background='http://www.thenetsgreatest.com/images/r4t2.gif'></td>");
 document.write("    </tr>");
// document.write("         <div class='imgleft' style='width:32; height:32'><img src='http://www.absolutefuturity.com/images/POP-Stopper-IE-Icon-32x32p.gif' width='32' height='32'></div><font size='2'><b><div style='height:19'><a href='http://www.thenetsgreatest.com/Internet/Popup_Ad_Spyware-Blockers/free-popup-stoppers/POP-Stopper-IE/'>POP-Stopper-IE</a></div></b></font>Popup Remover. Remove all those unwanted popups. Works with IE.");
}

function wordCounter(field, countfield, maxlimit, blimit) {
 wordcounter=0;
 for (x=0;x<field.value.length;x++) {
  if (field.value.charAt(x) == ' ' && field.value.charAt(x-1) != ' ')  {wordcounter++}
  if (wordcounter > maxlimit) {
   if (blimit) {field.value = field.value.substring(0, x);}
  }
  else {countfield.value = maxlimit - wordcounter;}
 }
}

function textCounter(field, countfield, maxlimit) {
 if (field.value.length > maxlimit)
 {field.value = field.value.substring(0, maxlimit);}
 else
 {countfield.value = maxlimit - field.value.length;}
}

function checkform(field, field2, field3, maxlimit) {
  wordvalidate=0;
  for (x=0;x<field.value.length;x++) {
    if (field.value.charAt(x) == ' ' && field.value.charAt(x-1) != ' ')  {wordvalidate++}
  }

  if (field3.value == "") {
    alert("You Article must contain a Title.");
    field3.focus();
    return false ;
  }
  if (wordvalidate < maxlimit) {
    alert("You need " + (maxlimit - wordvalidate) + " more words in order to reach the minimum of 300 words.");
    field.focus();
    return false ;
  }
  if (!field2.checked) {
    alert("You must agree to the Authors Agreement to submit an article.");
    field2.focus();
    return false ;
  }

  return true ;
}

//.form.ArticleContent


//-->