function checkemail(thisform) {
		//check email - first check if blank, then check for validity
	   if (thisform.email.value.length != 0) {
			if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(thisform.email.value)) {
				status = 1;
			} else {
				alert("Your email address appears to be incorrect, please check");
				thisform.email.focus();
				return (false);
			} 
		} else {
			alert("Please fill in your email address");
				thisform.email.focus();
				return (false);
		}
}


function checkform(thisform) {

		status = -1;
	
	    //check name
		if (thisform.name.value.length != 0) {
			status = 1;
		} else {
			alert("Please fill in your name");
			thisform.name.focus();
			return (false);
		}	


		//check email - first check if blank, then check for validity
	   if (thisform.email.value.length != 0) {
			if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(thisform.email.value)) {
				status = 1;
			} else {
				alert("Your email address appears to be incorrect, please check");
				thisform.email.focus();
				return (false);
			} 
		} else {
			alert("Please fill in your email address");
				thisform.email.focus();
				return (false);
		}
		
		
		//check Outlet
		/*if (thisform.outlet.value.length != 0) {
			status = 1;
		} else {
			alert("Please fill in your your outlet");
			thisform.outlet.focus();
			return (false);
		}*/	
		
	
		//check cocktail notes
		if (thisform.question.value.length != 0) {
			status = 1;
		} else {
			alert("Please enter a question");
			thisform.question.focus();
			return (false);
		}
		
		
		//now return status
		if (status == 1) {
			return (true);
		}
		
		
}