function topbar() {
  document.write("<TABLE CLASS=\"breakout\" BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=\"750\" HEIGHT=\"25\"><TBODY><TR ALIGN=\"right\">");
  document.write("<TD WIDTH=\"750\">");
  document.write("<SCRIPT>printdate();</SCRIPT>");
  document.write("</TD></TR></TBODY></TABLE>");
  document.write("<TABLE CLASS=\"breakin\" BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=\"750\" HEIGHT=\"25\"><TBODY><TR ALIGN=\"right\">");
  document.write("<TD WIDTH=\"750\">&nbsp;</TD>");
  document.write("</TR></TBODY></TABLE>");
}
function btmbar() {
document.write("<TABLE CLASS=\"breakin\" BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=\"750\" HEIGHT=\"25\"><TBODY><TR ALIGN=\"right\">");
document.write("<TD WIDTH=\"750\">&nbsp;</TD>");
document.write("</TR></TBODY></TABLE>");
document.write("<TABLE CLASS=\"breakout\" BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=\"750\" HEIGHT=\"25\"><TBODY><TR ALIGN=\"right\">");
document.write("<TD WIDTH=\"750\">This site is maintained by the Texas Precision Agriculture Group.&nbsp;</TD>");
document.write("</TR></TBODY></TABLE>");
}
function title(name) {
  document.write("<TD CLASS=\"title\"  WIDTH=\"650\" ALIGN=\"left\" VALIGN=\"top\">");
  document.write("&nbsp;&nbsp;"+name);
  document.write("</TD>");
}
function printdate() {
  months = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
  today = new Date();
  year = today.getYear();
  if (year < 1999) {
    year = year + 1900
  };
  document.write(months[today.getMonth()]+" ");
  document.write(today.getDate()+", ");
  document.write(year+"&nbsp;&nbsp;");
}
function inserthr() {
  document.write("<CENTER><HR WIDTH=\"80%\" NOSHADE COLOR=\"#FFDDAA\"></CENTER>");
}
function openCheckPassWin(area) {
  if (area == "txprecag") {
    pagename = "passcheck/passcheck.htm";
  }
  var newWin = null;
  newWin = window.open(pagename, 'passCheckWindow', 'width=380,height=170,resizable=1');
}