// JavaScript Document
var isPost = false;
function validateForm(objForm) {
	if  ( isPost ) {
		alert("You have press the SUBMIT button already");
		return false;
	} else if ( IsEmpty(objForm.name.value)) {
		Warning(objForm.name , "Please specify your Full Name");
		return false;
	} else if ( IsEmpty(objForm.email.value)) {
		Warning(objForm.email ,"Please specify your E-mail");
		return false;
	} else if ( ! IsEmail(objForm.email.value)) {
		Warning(objForm.email ,"Please specify your E-mail in the right format");
		return false;
} else if ( IsEmpty(objForm.T15.value)) {
		Warning(objForm.T15 , "Please specify your Telephone number");
		return false;
		} else if ( IsEmpty(objForm.social.value)) {
		Warning(objForm.social , "Please specify your Social Security Number");
		return false;
		} else {
		isPost = true;
		objForm.btnSubmit.disabled = true;
		return true;


	}
}	