function formCheck(myForm) {
	if (myForm.realname.value == "") {
	alert ("Please enter your Name");
	myForm.realname.focus();
	return false;
	}
	if (myForm.email.value == "") {
	alert ("Please enter your E-mail Address");
	myForm.email.focus();
	return false;
	}
	return true;
}

function formCheck2(myForm2) {
	alert ("Please read the top of the order page for the reason why this form is disabled.");
	return false;
}