/* 	======================================================
*	Author		: Cornelius Dito
*	WebDesign	: Mr. Emmanuel
*	Domain		: www.ticketothemoon.com
*	Powered by	: Dewata Production Indoneisa
*	=====================================================*/	

function VF_form(){ //v2.0
	var theForm = document.form;
	var emailRE = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
	var errMsg = "";
	var setfocus = "";

	if (theForm['captcha'].value == ""){
		errMsg = "Please fill Captcha Image first!";
		setfocus = "['message']";
	}
	
	if (theForm['message'].value == ""){
		errMsg = "Your comment required!";
		setfocus = "['message']";
	}
	if (!emailRE.test(theForm['email'].value)){
		errMsg = "Please enter a valid email address!";
		setfocus = "['email']";
	}
	if (theForm['name'].value == ""){
		errMsg = "Your name required!";
		setfocus = "['name']";
	}
	if (errMsg != ""){
		alert(errMsg);
		eval("theForm" + setfocus + ".focus()");
	}
	else theForm.submit();
}//-->

function textCounter(field, countfield, maxlimit) {
	if (field.value.length > maxlimit) 
	field.value = field.value.substring(0, maxlimit);
	else 
	countfield.value = maxlimit - field.value.length;
}
