function contactkenkai() {
if (!document.contact.name.value) {
alert("Please fill in your name");
document.contact.name.focus();
return false;
} else if (!document.contact.email.value) {
alert("Please fill in your email address");
document.contact.email.focus();
return false;
} else if (!document.contact.message.value) {
alert("Please fill in your message");
document.contact.message.focus();
return false;
} else if (document.contact.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.contact.code.focus();
return false;
} else  {
return true;
}
return false;
}
document.write('<form name="contact" id="contact" method="po');
document.write('st" action="contact-k');
document.write('enkai.htm" onClick="highlight');
document.write('(event)" onSubmit="return contactkenkai()">');