//
//  JavaScript for contact page
//

function CheckEmail()
	{
  //
  //  Check contact address is valid
  //
	if (document.frmContact["emailAddress"].value.length > 0)
		{
		if (!emailCheck(document.frmContact["emailAddress"].value))
			{
			setTimeout('document.frmContact["emailAddress"].focus()',100);
			return false;
			}	
		}
  }

function OnLoad(strControlinError)
	{
	//
	//  Sets focus to the specified field
	//
	if (strControlinError.length > 0)
		document.frmContact[strControlinError].focus();
		document.frmContact[strControlinError].style.backgroundColor = "#B7CBE6";		
	}

