<!--

 function stopAllErrors() { return true; }
 function lead0(val) { return (val <10) ? "0" + val.toString() : val; }
 function buildTime() {
 var time = new Date();
 var ampm = " AM";
 var h = time.getHours();
 if (h > 12) { h = h - 12; ampm = " PM"; }
 return lead0(time.getYear()-100); }

 document.write('<TABLE BGCOLOR="FFFFFF" BORDER="0" WIDTH="95%" COLSPAN="0" CELLSPAN="0" CELLPADDING="0" CELLSPACING="0" ALIGN=CENTER><TR><TD ALIGN=CENTER  style="text-decoration: none; color: 0A0795; font-family: Verdana, Times New Roman, Arial; font-size: 8pt; font-weight: normal;"><BR><BR><BR><BR>&copy;2002 - 20'+buildTime()+'  Dave Walters / JAISP - ALL Rights Reserved<P></TD></TR></TABLE>');

//-->
