
function javaNews() {
  document.write("<center><table border=1 bgcolor=white><tr><td><font size=4 face=\"Arial,GillSans,sans-serif\" color=black><p><strong>In The News...</strong></font><font size=3 color=\"000045\"><br><applet code=\"VertTextScroller.class\" codebase=\"/applets\" width=215 height=10><param name=numberOfLines value=6><param name=background value=white><param name=scrollDelay value=8><param name=lineSpace value=13><param name=linkFrame value=_top><param name=linkColor value=red><param name=manualPause value=0><param name=linkClick value=1><param name=sizeDefault value=9><param name=lineDefault value=\"  \"><param name=colorDefault value=blue><param name=fontDefault value=Helvetica><param name=styleDefault value=PLAIN><param name=linkDefault value=\"  \"><param name=pauseValueDefault value=0><param name=lineOffsetDefault value=0>");

  document.write("<param name=line1 value=\"Computer Sleuth Sniffs Out Pension Cheaters\">");
  document.write("<param name=pauseValue1 value=3500><param name=style1 value=BOLD><param name=color1 value=blue>");
  document.write("<param name=link1 value=\"http://www.comserv-inc.com/reviews/sleuth.html\">");

  document.write("<param name=line2 value=\"Database Detective Tracks Down Benefit Fraud\">");
  document.write("<param name=pauseValue2 value=3500><param name=style2 value=BOLD><param name=color2 value=blue>");
  document.write("<param name=link2 value=\"http://www.comserv-inc.com/reviews/detective.html\">");

  document.write("<param name=line3 value=\"Social Security Says His Number Is Up - Again\">");
  document.write("<param name=pauseValue3 value=3500><param name=style3 value=BOLD><param name=color3 value=blue>");
  document.write("<param name=link3 value=\"http://www.comserv-inc.com/reviews/ssa.html\">");

  document.write("<param name=line4 value=\"Attention Retirees: Are You Still There?\">");
  document.write("<param name=pauseValue4 value=3500><param name=style4 value=BOLD><param name=color4 value=blue>");
  document.write("<param name=link4 value=\"http://www.comserv-inc.com/reviews/retirees.html\">");

  document.write("<param name=line5 value=\"43 Years Of Cashing In From The Great Beyond\">");
  document.write("<param name=pauseValue5 value=3500><param name=style5 value=BOLD><param name=color5 value=blue>");
  document.write("<param name=link5 value=\"http://www.comserv-inc.com/reviews/cashin.html\">");

  document.write("<param name=line6 value=\"Social Security audit: Millions paid to dead\">");
  document.write("<param name=pauseValue6 value=3500><param name=style6 value=BOLD><param name=color6 value=blue>");
  document.write("<param name=link6 value=\"http://www.comserv-inc.com/reviews/ssa2.html\">");

  document.write("</applet></td></tr></table>");
}

function javaScriptNews() {
  document.write("<center><table border=0><tr><td><form name=\"newsfeed\" onSubmit=\"return showNews()\">");
  document.write("<font size=4 face=\"Arial,GillSans,sans-serif\" color=black><p><strong>In The News...</strong></font>");
  document.write("<font size=2 color=\"000045\"><select name=\"selection\" onchange=\"showNews()\">");
  document.write("<option selected value=\"none\"> Please select a news article.");
  document.write("<option value=\"sleuth\"> Computer Sleuth Sniffs Out Pension Cheaters");
  document.write("<option value=\"detect\"> Database Detective Tracks Down Benefit Fraud");
  document.write("<option value=\"ssa\"> Social Security Says His Number Is Up - Again");
  document.write("<option value=\"retire\"> Attention Retirees: Are You Still There?");
  document.write("<option value=\"cashin\"> 43 Yrs Of Cashing In From The Great Beyond");
  document.write("<option value=\"ssa2\"> Social Security audit: Millions paid to dead</select></form></td></tr></table>");
}

function showNews() {

  var dn = document.newsfeed;
  var sel = dn.selection.selectedIndex;
  var art = dn.selection.options[sel].value;

  if (art=="sleuth")
    location.href="http://www.comserv-inc.com/reviews/sleuth.html";
  else if (art=="detect")
    location.href="http://www.comserv-inc.com/reviews/detective.html";
  else if (art=="ssa")
    location.href="http://www.comserv-inc.com/reviews/ssa.html";
  else if (art=="retire")
    location.href="http://www.comserv-inc.com/reviews/retirees.html";
  else if (art=="cashin")
    location.href="http://www.comserv-inc.com/reviews/cashin.html";
  else if (art=="ssa2")
    location.href="http://www.comserv-inc.com/reviews/ssa2.html";
  else return false;

  return true;
}

function noFrillsNews() {
  alert("No Frills News");
}

function buildNews() {
  if (navigator.javaEnabled() == true) javaNews();
  else noFrillsNews();
}

