language = "JavaScript"<!--var searchwin;// this function gets called with on submit and checks to see that they have filled out all the required fieldsfunction Check()                {				if (searchwin)				{searchwin.close();}// this is setting variables for all their required entries in the form                searchEntered = document.forms ['search'].elements['keywords'].value;                                if  (!searchEntered)                        {searchwin = window.open ("", "Search", "menubar=yes,width=300,height=200");        searchwin.document.write ("<HTML><HEAD><TITLE>CDW Archive Search</title><script src = \"location.js\"></script></HEAD>");        searchwin.document.write ("<BODY BGCOLOR = '#ffffff' text = '#000000' link='#008b8b' vlink='gray' alink='#cc66ff'>");        searchwin.document.write ("<center><h3><font face='Verdana, Geneva, sans-serif' size='2'>");        searchwin.document.write ("Wait!</h3>");        searchwin.document.write ("<p><font face='Verdana, Geneva, sans-serif' size='1'>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, Geneva, sans-serif' size='1'><a href = \"#\" onClick = \"self.close()\">close window</a></center>");                     searchwin.document.write ("<script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type="text/javascript">var pageTracker = _gat._getTracker("UA-533313-1");pageTracker._initData();pageTracker._trackPageview();</script> </HTML>");		searchwin.document.close();// this closes the new window after a few seconds        setTimeout("searchwin.close()", 3000);               return false;                }  else                {                return true;}                      } 												              function findIt(term) {re = new RegExp("_", "gi");term = term.replace (re, "\"");  document.search.keywords.value = term;  document.search.how[0].checked = true;  document.search.match[2].checked = true;  document.search.submit();  }                            // -->                