function formNewsValidate()
{	
    var strValue;
    var strAlert;	
    strAlert = "";
 
    strValue = document.getElementById('newsletter').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Email.\n";
	}else if(strValue=="Signup For Newsletter"){
		strAlert +="* Please fill out Email.\n";
	}
	
    if (strAlert=="")
		objForm.submit();
   else
   {
      alert(strAlert);
	}
	    
	return false;
}

function formResValidate(){
	var strValue;
	var strAlert;
	strAlert = "";
	
    strValue = document.getElementById('group-name').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Name of Group.\n";
	} 
	
    strValue = document.getElementById('contact-person').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Person to Contact.\n";
	} 
	
    strValue = document.getElementById('hphone').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Home Phone.\n";
	} 
	
    strValue = document.getElementById('email').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Email.\n";
	} 
	
    strValue = document.getElementById('numberofperson').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Number of Person.\n";
	} 
	
    strValue = document.getElementById('fdate').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Date of Reservation.\n";
	} 
	
    strValue = document.getElementById('ftime').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Time of Reservation.\n";
	} 
	
    strValue = document.getElementById('frefer').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Web address of referring website.\n";
	} 
	
	
	
	
	
	
    if (strAlert=="")
		objForm.submit();
    else {
      alert(strAlert);
	}	    
	return false;	
}

function formShopValidate(){
	var strValue;
	var strAlert;
	strAlert = "";
	
    strValue = document.getElementById('To_Name').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Name.\n";
	} 
	
    strValue = document.getElementById('required-email').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Email.\n";
	} 
	
    if (strAlert=="")
		objForm.submit();
    else {
      alert(strAlert);
	}	    
	return false;	
}

function formMediaValidate(){
	var strValue;
	var strAlert;
	strAlert = "";
	
    strValue = document.getElementById('Name').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Name.\n";
	} 
	
    strValue = document.getElementById('Email').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Email.\n";
	} 
	
    if (strAlert=="")
		objForm.submit();
    else {
      alert(strAlert);
	}	    
	return false;	
}

function formContactValidate(){
	var strValue;
	var strAlert;
	strAlert = "";
	
    strValue = document.getElementById('fname').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Name.\n";
	} 
	
    strValue = document.getElementById('femail').value;
	if (strValue==""){
	   	strAlert +="* Please fill out Email.\n";
	} 
	
    if (strAlert=="")
		objForm.submit();
    else {
      alert(strAlert);
	}	    
	return false;	
}
