//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++ valReqForm()
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function valReqForm(){
	
	tmpObj=document.getElementById('txtCntName');
	if (tmpObj.value==''){
		window.alert('Please enter your name!');
		tmpObj.focus();
		return false;
	}
	tmpObj=document.getElementById('txtCntPhone');
	if (tmpObj.value==''){
		tmpObj=document.getElementById('txtCntEmail');
		if (tmpObj.value==''){
			window.alert('Please enter either your phone number or email address!');
			//tmpObj.focus();
			return false;
		}
	}
	tmpObj=document.getElementById('txtCntComments');
	if (tmpObj.value==''){
		window.alert('Please give us your comments!');
		tmpObj.focus();
		return false;
	}
	
	objForm=document.getElementById('frmRequestForm');
	objForm.action='/thankyou.php';
	objForm.submit();
	
}
