     <!--
      function makeNewWindow(){
       newWindow = window.open("","","status, scrollbars=yes, height=450px, width=400px")
       }

        //make a new window to show help
       function doGHelp(){

             //open a new window
            makeNewWindow()

         //bring the new window to the front
       newWindow.focus();

         //write content to the window
      var newContent  = "<HTML><HEAD><TITLE>Help</TITLE></HEAD><BODY> "
          
           newContent += "<P><CENTER><B>Help</B></CENTER></P>"
           newContent += "<HR COLOR='seagreen'>"
           newContent += "<OL>"
           newContent += "<LI>AREA:&nbsp;&nbsp;The suburb or neighborhood in which your team is located.<BR><BR>"
           newContent += "<LI>FIRST:&nbsp;&nbsp;This would be the first name of the team member or Captain.<BR>"
           newContent += "If two members have the same first name, use an initial or number to help distinguish between them.<BR><BR>"
           newContent += "<li>TEAM NAME:&nbsp;&nbsp;This measure prevents two teams from having the same name and thus causing confusion or the need to re-register.&nbsp;&nbsp;It will also occur if a team has registered in past years with the same name.  If this is the cause, we recommend adding a year designation to the name:  frogs04, frogs05.<br /><br />"
           newContent += "<LI>CAPTAIN'S PASSWORD:&nbsp;&nbsp;This is a security measure and Team Captains, or their designate, must enter this password every time they want to up-date mileage on the Captain's Mileage Log."
           newContent += "&nbsp;&nbsp;This can be any combination of letters or numbers you can easily remember, such as Frog100."
           newContent += "</OL><FORM><CENTER>"
           newContent += "<INPUT TYPE='button' VALUE='Close' onClick='window.close()'>"
           newContent += "</CENTER></FORM>"
           newContent += "</BODY></HTML>"

            //write to the new window
           newWindow.document.write(newContent)
            //close the layout stream
           newWindow.document.close()
           
           }
           
         //make a new window to show help
	function schoolHelp(){
	   
	      //open a new window
	     makeNewWindow()
	   
	     //bring the new window to the front
	   newWindow.focus();
	   
	   //write content to the window
	   var newContent  = "<HTML><HEAD><TITLE>Help</TITLE></HEAD><BODY> "
	             
	       newContent += "<P><CENTER><B>Help</B></CENTER></P>"
	       newContent += "<HR COLOR='seagreen'>"
	       newContent += "<OL>"
	       newContent += "<LI>DISTRICT:&nbsp;&nbsp;Enter your school district by Name of District and ISD (example:  Bryan ISD, Dallas ISD).<br>"
	       newContent += "If your school is a Private School, enter NONE.<BR><BR>"
	       newContent += "<LI>TEACHER PASSWORD:&nbsp;&nbsp;This is a security measure and will be required "
	       newContent += "each time the Team's Log is updated."
	       newContent += "&nbsp;&nbsp;This can be any combination of letters or numbers you can easily remember."
	       newContent += "</OL><FORM><CENTER>"
	       newContent += "<INPUT TYPE='button' VALUE='Close' onClick='window.close()'>"
	       newContent += "</CENTER></FORM>"
	       newContent += "</BODY></HTML>"
	   
	     //write to the new window
	    newWindow.document.write(newContent)
	     //close the layout stream
	    newWindow.document.close()
	              
           }

         //make a new window to show help
	function doSHelp(){
	   
	      //open a new window
	     makeNewWindow()
	   
	     //bring the new window to the front
	   newWindow.focus();
	   
         //write content to the window
      var newContent  = "<HTML><HEAD><TITLE>Help</TITLE></HEAD><BODY> "
          
           newContent += "<P><CENTER><B>Help</B></CENTER></P>"
           newContent += "<HR COLOR='seagreen'>"
           newContent += "<font color='red'>Walker's Password:</font>&nbsp;&nbsp;This is a security measure and each Walker, or their designate, must enter this password every time they want to up-date mileage in the Walker's Mileage Log."
           newContent += "&nbsp;&nbsp;This can be any combination of letters or numbers you can easily remember, such as Frog100."
           newContent += "<FORM><CENTER>"
           newContent += "<INPUT TYPE='button' VALUE='Close' onClick='window.close()'>"
           newContent += "</CENTER></FORM>"
           newContent += "</BODY></HTML>"

	   
	     //write to the new window
	    newWindow.document.write(newContent)
	     //close the layout stream
	    newWindow.document.close()
	              
           }

        -->   