//<!--  hide java from non capable browsers
function checkInputValidity () {
	var errors = new String();
		errors = "";
	if (document.emailform.Name.value == "") {
		errors = errors + "Please provide your name\n\n";
	}
	if (errors != "") {
		alert(errors);
		return false;
	}
}
// -->