// JavaScript Document


var email = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/; 

function val_contact()
{
	if($F('name') == "")
	{
		Element.setStyle('l_name',{ backgroundColor: '#CCE3ED' });	
		Element.setStyle('l_email',{ backgroundColor: '' });	
		//Element.setStyle('l_call',{ backgroundColor: '' });
		Element.setStyle('l_subject',{ backgroundColor: '' });	
		Element.setStyle('l_body',{ backgroundColor: '' });	
		Form.Element.focus('name');
		return false
	}
	else if($F('email') == "" || (!email.test($F("email"))))
	{
		Element.setStyle('l_name',{ backgroundColor: '' });	
		Element.setStyle('l_email',{ backgroundColor: '#CCE3ED' });	
		//Element.setStyle('l_call',{ backgroundColor: '' });
		Element.setStyle('l_subject',{ backgroundColor: '' });	
		Element.setStyle('l_body',{ backgroundColor: '' });	
		Form.Element.focus('email');
		return false
	}
	
	else if($F('subject') == "")
	{
		Element.setStyle('l_name',{ backgroundColor: '' });	
		Element.setStyle('l_email',{ backgroundColor: '' });	
		//Element.setStyle('l_call',{ backgroundColor: '' });
		Element.setStyle('l_subject',{ backgroundColor: '#CCE3ED' });	
		Element.setStyle('l_body',{ backgroundColor: '' });	
		Form.Element.focus('subject');
		return false
	}
	else if($F('body') == "")
	{
		Element.setStyle('l_name',{ backgroundColor: '' });	
		Element.setStyle('l_email',{ backgroundColor: '' });	
		//Element.setStyle('l_call',{ backgroundColor: '' });
		Element.setStyle('l_subject',{ backgroundColor: '' });	
		Element.setStyle('l_body',{ backgroundColor: '#CCE3ED' });	
		Form.Element.focus('body');
		return false
	}
	else
		return true
}






