/* JavaScript Form Validation by: ..: OneMadEye :..  */
/* NOTE: \n adalah ghanti baris atau PRESS ENTER  */

<!--
function check_all(form) {
if (form.name.value == "") {
alert("Error Message:\nPlease enter your Name!");
form.name.focus();
return false; 
}
if (form.email.value == "") {
alert("Error Message:\nPlease enter your Email Address!");
form.email.focus();
return false; 
}
if (!form.email.value.match(/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/)) {
alert("Error Message:\nPlease enter your Email Address in a correct format!\n(e.g. you@youremail.com)");
form.email.focus();
return false; 
}
}

-->