/**** copyright Gillean Lazelle ****/

function errorCheck2() {	
	if (document.email_form.name.value==""){
		alert("Please fill in the 'your name' field");
		return false;
	}
	if (document.email_form.visitormail.value==""){
		alert("Please fill in the 'your email' field");
		return false;
	}	
	if (document.email_form.subject.value==""){
		alert("Please fill in the 'subject' field");
		return false;
	}
	if (document.email_form.notes.value==""){
		alert("Please type a message");
		return false;
	}		
	else {				
		document.email_form.submit();		
	}
}


