/*
JS Notes
Creation Date: 03/12/04
Allen Levine
*/ 


function validate()
{
	if (eval("document.mainform.Send_Quote_Via[0].checked") == true)
	{
		//User Selected Fax
		if (document.mainform.Fax.value== "")
		{
			alert("You have specified that you want to receive your quote via fax, but have not entered a fax number.  Please enter a fax number.")
			;document.mainform.Fax.focus()
			;return (false);
		}
	}
	if (eval("document.mainform.Send_Quote_Via[1].checked") == true)
	{
		//User Selected Fax
		if (document.mainform.EmailAddress.value== "")
		{
			alert("You have specified that you want to receive your quote via email, but have not entered an email address.  Please enter an email address.")
			;document.mainform.EmailAddress.focus()
			;return (false);
		}
	}
}