// This Function will check the form for MUST Entered Informaion, If Information is Incorrect it
// Will alert the users and set the focus to the mistaken area
function validateme(thisform){
var isvalid = true;

	if(thisform.name.value.length <3){
		// Change this Message to Your Preferance
		alert("Please Enter A Valid Name, At Least 3 Characters Minimum!");
		isvalid = false
		thisform.name.focus();
	}
	
	if(isvalid){
		if (thisform.email.value.indexOf("@")==-1 || thisform.email.value.indexOf(".")==-1 ||  thisform.email.value.indexOf(" ")!=-1 || thisform.email.value.length<6){
			// Change this Message to Your Preferance
			alert("Please Enter A Valid Email!");
			isvalid = false
			thisform.email.focus();
    	}
	}			
	
	if(isvalid){
		if(thisform.message.value.length <3){
		// Change this Message to Your Preferance
		alert("Please Enter A Valid Message, At Least 3 Characters Minimum!");
		isvalid = false
		thisform.message.focus();
		}
	}

return isvalid;
}