function validateForm(theForm){
	
	if (!validRequired(theForm.txtFirstName,"Your First Name"))
		return false;
		
	if (!validRequired(theForm.txtLastName,"Your Last Name"))
		return false;
				
	if (!validEmail(theForm.txtEmail,"Your Email Address",true))
		return false;

  return true;
}

function submitME(myVar){
	document.frmSubScribe.txtAction.value = myVar;

	
	if (!validRequired(frmSubScribe.txtFirstName,"Your First Name"))
		return false;
		
	if (!validRequired(frmSubScribe.txtLastName,"Your Last Name"))
		return false;
				
	if (!validEmail(frmSubScribe.txtEmail,"Your Email Address",true))
		return false;
	
	//if(!validEmail(document.frmSubScribe.txtEmail,"Your Email Address",true))
		//document.frmSubScribe.txtEmail.focus();
	//else
		document.frmSubScribe.submit();
}
