function seprkenkai() {
if (!document.sepr.name.value) {
alert("Please fill in your name");
document.sepr.name.focus();
return false;
} else if (!document.sepr.url.value || document.sepr.url.value == "http://www.") {
alert("Please fill in your website address");
document.sepr.url.focus();
return false;
} else if (!document.sepr.email.value) {
alert("Please fill in your email address.");
document.sepr.email.focus();
return false;
} else if (!document.sepr.keyphrase.value) {
alert("Please fill in at least 1 keyphrase");
document.sepr.keyphrase.focus();
return false;
} else if (document.sepr.code.value.toLowerCase() != "") {
alert("Please make sure that the code you have entered is the same as the white code in the orange box above it");
document.sepr.code.focus();
return false;
} else  {
return true;
}
return false;
}
document.write('<form action="se');
document.write('pr.php" meth');
document.write('od="post" name="se');
document.write('pr" onSubmit="return seprkenkai()">');