//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++ valContactForm()
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function valContactForm(){
	
	tmpObj=document.getElementById('txtMainName');
	if (tmpObj.value==''){
		window.alert('Please enter your Name!');
		tmpObj.focus();
		return false;
	}
	tmpObj=document.getElementById('txtMainState');
	if (tmpObj.value==''){
		window.alert('Please enter your State!');
		tmpObj.focus();
		return false;
	}
	tmpObj=document.getElementById('txtMainPhone');
	if (tmpObj.value==''){
		//must either the phone or email
		tmpObj2=document.getElementById('txtMainEmail');
		if (tmpObj2.value==''){
			window.alert('Please enter your Phone!');
			tmpObj.focus();
			return false;
		}
	}
	tmpObj=document.getElementById('txtMainDesc');
	if (tmpObj.value==''){
		window.alert('Please enter your Name!');
		tmpObj.focus();
		return false;
	}
	
	objForm=document.getElementById('frmMainContact');
	objForm.action='/sendMainContactForm.php';
	objForm.submit();
	
}


