// Form Validation
//
// This file contains all javascript validation
// of this website.

//
// START
//

function validateCommentForm(frm) {
	if (isEmpty(frm.commentby, "Pangalan")) return false;
	if (isEmpty(frm.email, "Email")) return false;
	if (frm.email.value!='') {
		if (!isEmail(frm.email.value, "Email")) { frm.email.select(); return false;} 
	}
	if (isEmpty(frm.comment, "Komento")) return false;
	return true;
}

//
// END
//
