<!--


function Validate_Form()
{
	if (document.form.strContactPerson.value.length == 0)
	{
		alert('You must enter A CONTACT PERSON to continue.');
		document.form.strContactPerson.focus();
		return(false);
	}
	if (document.form.strPhoneNumber.value.length == 0)
	{
		alert('You must enter A PHONE NUMBER to continue.');
		document.form.strPhoneNumber.focus();
		return(false);
	}
	if (document.form.strEmailAddress.value.length == 0 || document.form.strEmailAddress.value.indexOf(".") == -1 || document.form.strEmailAddress.value.indexOf("@") == -1)
	{
		alert('You must enter YOUR E-MAIL ADDRESS containing "@" and "." to continue.');
		document.form.strEmailAddress.focus();
		return(false);
	}
	if (document.form.strTypeofRequest.selectedIndex == 0) {
        alert('You must enter SELECT YOUR REQUEST TYPE to continue.');
		document.form.strTypeofRequest.focus();
		return(false);
    }
	if (document.form.strTypeofMarketing.selectedIndex == 0) {
        alert('You must enter HOW YOU FOUND US to continue.');
		document.form.strTypeofMarketing.focus();
		return(false);
    }
	if (document.form.strComments.value.length == 0)
	{
		alert('You must enter A REQUEST to continue.');
		document.form.strComments.focus();
		return(false);
	}
	return (true);
} 



function Validate_Form_quote()
{
	if (document.form.strContactPerson.value.length == 0)
	{
		alert('You must enter A CONTACT PERSON to continue.');
		document.form.strContactPerson.focus();
		return(false);
	}
	if (document.form.strPhoneNumber.value.length == 0)
	{
		alert('You must enter A PHONE NUMBER to continue.');
		document.form.strPhoneNumber.focus();
		return(false);
	}
	if (document.form.strTypeofRequest.selectedIndex == 0) {
        alert('You must enter SELECT YOUR REQUEST TYPE to continue.');
		document.form.strTypeofRequest.focus();
		return(false);
    }
	if (document.form.strComments.value.length == 0)
	{
		alert('You must enter A REQUEST to continue.');
		document.form.strComments.focus();
		return(false);
	}
	return (true);
} 
	
//-->







































