<!--// message to scroll in text fieldvar msg = "The NNA website is updated once or twice a month with news, events and other information.          Check back often.";var spacer = "          ";// current message positionvar pos = 0;//flag to control messagefunction ScrollMessage() {   document.form1.text1.value = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);   pos++;   if (pos > msg.length) pos = 0;// set timeout for next update   window.setTimeout("ScrollMessage()",100);}// Display a link help messagefunction LinkMessage(text) {   window.status = text;}function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}var bannerImg = new Array();  // Enter the names of the images below  bannerImg[0]="images/NNASat.jpg";  bannerImg[1]="photos/atucker_backesto_shirt.jpg";  bannerImg[2]="photos/Q_with_tnovello.jpg";var newBanner = 0;var totalBan = bannerImg.length;function cycleBan() {  newBanner++;  if (newBanner == totalBan) {    newBanner = 0;  }  document.banner.src=bannerImg[newBanner];  // set the time below for length of image display  // i.e., "4*1000" is 4 seconds  setTimeout("cycleBan()", 5*1000);}window.onload=cycleBan;
