function changeToError (id_val)
{
	document.getElementById(id_val).className='quote-line-error';
}

function changeToOk (id_val)
{
	document.getElementById(id_val).className='quote-line';
}

function validateForm()
{
	var is_submit=true;
	if ((document.getElementById ('contact_phone1_id').value.length!=3)||(document.getElementById ('contact_phone2_id').value.length!=3)||(document.getElementById ('contact_phone3_id').value.length!=4))
	{
		changeToError ('phone-line');
		is_submit=false;
	}
	else
	{
		changeToOk ('phone-line');
	}
	
	if (!(/^[a-zA-Z0-9_\.\-]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$/.test(document.getElementById ('email_id').value)))
	{
		changeToError ('email-line');
		is_submit=false;
	}else
	{
		changeToOk ('email-line');
	}
	if (document.getElementById ('contact_name_id').value.length<2)
	{
		changeToError ('contact-name-line');
		is_submit=false;
	}else
	{
		changeToOk ('contact-name-line');
	}
	
	return is_submit;

}

function handleForm ()
{
	if (validateForm())
	{
		document.getElementById('quote_form').action='quote-submit.php';
		document.getElementById('quote_form').submit();
	}

	//document.getElementById('quote_form').action='quote-submit.php';
	//document.getElementById('quote_form').submit();
	
}
