//(c) All rights reserved to RestorationSOS.com

<!--
function associatesCheck(){
	var frm = document.getElementById("associates");

	if (frm.companyName.value.length<5) {
		alert('Please Enter a valid Company Name');
		frm.companyName.focus();
		return false;
		}

	if (frm.contactName.value.length<4) {
		alert('Please Enter a valid Contact Name');
		frm.contactName.focus();
		return false;
		}

	var ph = frm.phone.value.replace( /[^\d]/g, "" );

	if ( ph.length != 10 ) {
		alert("Please Choose a Valid Phone Number Including Area Code");
		frm.phone.focus();
		return false;
		}

	if (!(/^\w+([\.]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})$/.test(frm.email.value))) {
		alert('Please Enter a Valid eMail Address');
		frm.email.focus();
		return false;
		}
}
//-->

<!--
onload=function() {
	document.getElementById("companyName").focus();
}
//->

