
document.write('<script type="text/javascript" src="/common/jQuery/js/jquery-1.3.2.min.js"></script>');
document.write('<script type="text/javascript" src="/common/jQuery/js/jquery-ui-1.7.2.custom.min.js"></script>');

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++ valEstForm()
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function valEstForm(){
	
	tmpObj=document.getElementById('txtEstName');
	if (tmpObj.value==''){
		window.alert('Please enter your name!');
		tmpObj.focus();
		return false;
	}
	tmpObj=document.getElementById('txtEstPhone');
	if (tmpObj.value==''){
		tmpObj=document.getElementById('txtEstEmail');
		if (tmpObj.value==''){
			//must enter either phone or email
			window.alert('Please enter either your phone or email so we can contact you.');
			tmpObj.focus();
			return false;
		}
	}
	
	objForm=document.getElementById('frmFreeEstimate');
	objForm.action='/sendEstimateForm.php';
	objForm.submit();
	
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++ hoverNavButton()
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function hoverNavButton(inButton, inMode){
	
	if (inMode=='over'){
		inButton.className='navButtonOver';
	}else{
		inButton.className='navButton';
	}
	
}
