function srchValidate(){

 var msg;
 var msgflag;
 
 msgflag = "false";

 if(document.forms[0].Query.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].Query.focus();
    return;
	}
		
 if(msgflag == "false"){
 	document.forms[0].submit()
    }

}

function srchValidate2(){

 var msg;
 var msgflag;
 
 msgflag = "false";

 if(document.forms[0].QueryString.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].QueryString.focus();
    return;
	}
		
 if(msgflag == "false"){
 	document.forms[0].submit()
    }

}