//--------------------------------------     GLOBALS    ---------------------------------//

  var theRoot_Path = "";          //--  global declaring the Root Directory Path
  
  var theSearch_Value= "";     //-- global declaring the Search Form Value: ie DOT, DOH, DMV, etc.
 
 
//---------------------------   ONLOAD,UNLOAD, & RESIZE BODY    -------------------------//
  
  function onPageLoad(){
	if(document.forms['search'])document.forms['search'].reset();
	if(theSearch_Value)document.forms['search'].qt.value=theSearch_Value;
  }


//----------------------------    SEARCH/FORM FUNCTIONS    ------------------------------//

  function sword(){if (document.forms['search'].qt.value == theSearch_Value)document.forms['search'].qt.value = '';}
  function submitForm(whatForm){document.forms[whatForm].submit();}
  
//--------------------------------  EXTERNAL FILE LINKs    -----------------------------//
  
  if(theRoot_Path!=""){
    document.write('<script src="'+theRoot_Path+'java/standard/detectflash.js"></' + 'script>');
  }
//--------------------------------  END EXTERNAL FILE LINKs    -----------------------------//

