function srchValidate(){

 var msg;
 var msgflag;
 
 msgflag = "false";

 if ((document.forms[0].QueryAll.value == "") &&
    (document.forms[0].QueryAny.value == "") &&
    (document.forms[0].QueryExact.value == "")){
	msg="Please type the word or words you wish to search for in the Search Box.\r";	
    alert(msg);
    msgflag = "true"
	
	document.forms[0].QueryAll.focus();
    return;
	}
		
 if(msgflag == "false"){
     document.forms[0].submit()
    }

}
