<!--//// checks for version 3 browsersvar browserVer=parseInt(navigator.appVersion);if (browserVer <= 3 && navigator.userAgent.indexOf("Windows CE") == -1) {        alert("Please upgrade your browser to utilitze all the features of our site.");}    // checks for PocketPC browsers// if (navigator.userAgent.indexOf("Windows CE") != -1)//    {window.location='pocketpc.htm'}// popup codefunction pop(page) {        var win = window.open(page, "", "menubar=yes,resizable=yes,scrollbars=yes,width=450,height=450,screenX=1,screenY=1");}// sets up ability to have visible/invisible layersn = (document.layers) ? 1:0ie = (document.all) ? 1:0function show(layername) {    if (n)      {      eval("document."+layername+".visibility = 'show'")        }    if (ie)      {      eval(layername+".style.visibility='visible'")      }}function hide(layername) {    if (n)      {      eval("document."+layername+".visibility = 'hide'")      }    if (ie)      {      eval(layername+".style.visibility='hidden'")      }}//creates date according to local systemfunction dumpDate() {var months=new Array(13);months[1]="January";months[2]="February";months[3]="March";months[4]="April";months[5]="May";months[6]="June";months[7]="July";months[8]="August";months[9]="September";months[10]="October";months[11]="November";months[12]="December";var time=new Date();var lmonth=months[time.getMonth() + 1];var date=time.getDate();var year=time.getYear();if (year < 2000)    // Y2K Fix, Isaac Powellyear = year + 1900; // http://onyx.idbsu.edu/~ipowelldocument.write(lmonth + " " + date + ", " + year);}//-->