/* Validate competition form */
function Validate(form) {

	/* Name */
	if (form.name.value.length==0) {
		alert("Please enter your name");
		return false;
	}

	/* Comment */
	if (form.comment.value.length==0) {
		alert("Please enter your comments");
		return false;
	}
	
	/* If all filled in */
	return true;
}