function checkform() {
	var errors = "";
	if (document.registerform.firstname.value==""){errors += "\n-  First Name";}
	if (document.registerform.lastname.value==""){errors += "\n-  Last Name";}
	if ((document.registerform.email.value=="") || (document.registerform.email.value.indexOf('@')==-1) || (document.registerform.email.value.indexOf('.')==-1)) {errors += "\n-  Email";}
	if (document.registerform.country.value==""){errors += "\n-  Country";}
	if (document.registerform.password.value==""){errors += "\n-  Password";}
	if (document.registerform.pastime.value==""){errors += "\n-  Interest";}
	if (document.registerform.country.value=="netherlands"){alert("Residents of the Netherlands are advised that participating in Moneyballs may be considered a breach of Dutch gaming laws. Therefore we temporally cannot accept registration from The Netherlands.");return false;}
	if (errors != "") {alert("You failed to correctly fill in your:"+errors);return false;}
}
