
//CHECKS REQUIRED FIELDS
function checkRequired() {
var errormessage = new String();

	if(WithoutContent(document.contactform.name.value)) {
		document.getElementById('namecheck').style.display = '';
		return false;
	}
	if(WithoutContent(document.contactform.email.value)) {
		document.getElementById('emailcheck').style.display = '';
		return false;
	}
	return true;
}

function WithoutContent(ss) {
	if(ss.length > 0) { return false; }
	return true;
}

