language = "JavaScript"
<!--

// this function gets called with on submit and checks to see that they have filled out all the required fields
function Check()
                {
// this is setting variables for all their required entries in the form
                searchEntered = document.forms ['search'].elements['keywords'].value;            
            

        if  (!searchEntered)
                
        {searchwin = window.open ("blank.html", "Download", "menubar=yes,width=300,height=200");
        searchwin.document.write ("<HTML><HEAD><TITLE> Archives Order Form</TITLE></HEAD>");
        searchwin.document.write ("<BODY BGCOLOR = '#ffffff'>");
        searchwin.document.write ("<center><h3><font face='Verdana, Arial, Helvetica' size='2'>");
        searchwin.document.write ("Wait!</h3>");
        searchwin.document.write ("<p><font face='Verdana, Arial, Helvetica' size='2'>You forgot to enter some keywords for which to search.");
        // this writes into the new window what they forgot
           searchwin.document.write ("<p><font face='Verdana, Arial, Helvetica' size='2'><a href = \"javascript:self.close()\">Thanks for remimding me</a></center>");
      
       
        searchwin.document.write ("</BODY> </HTML>");
// this closes the new window after a few seconds
        setTimeout("searchwin.close()", 3000); 
       
       return false;
                }

  else
                {
                return true;} 
                
     } 
				
				
				
        
     
        
      
        
        
// -->
                



