//Check the form before submitting
function CheckForm () {
	var errorMsg = "";
	if (document.frmSiteSearch.search.value==""){
		errorMsg += "\n\tSearch \t- Please enter at least one word to serach for";
	}
	if (errorMsg != ""){
		msg = "____________________________________________________________________\n\n";
		msg += "Your Search of 3Elephants has failed because there are problem(s) with the form.\n";
		msg += "Please correct the problem(s) and re-submit the form.\n";
		msg += "____________________________________________________________________\n\n";
		msg += "The following field(s) need to be corrected: -\n";
		
		errorMsg += alert(msg + errorMsg + "\n\n");
		return false;
	}	
	return true;
}