// JavaScript Document

<!-- Hide script from older browsers

re=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/

function submitIt() 
{
	
	if (myForm.cont_looking.value=="")
	{
		alert("Please tell us what you are looking for, by entering information in the box in the bottom left hand corner of the screen.")
		myForm.cont_looking.focus()
		myForm.cont_looking.select()
		return false;
	}

	if (myForm.cont_name.value=="")
	{
		alert("Please input your name.")
		myForm.cont_name.focus()
		myForm.cont_name.select()
		return false;
	}
	
	if (myForm.keepclean.value=="")
	{
		alert("Please enter the reference number in the field below.")
		myForm.keepclean.focus()
		myForm.keepclean.select()
		return false;
	}


	if (re.test(myForm.cont_emai.value)) 
	{
		return true	
	}
		alert ("The email address you have entered is invalid.")
		myForm.cont_emai.focus()
		myForm.cont_emai.select()
		return false;


}


-->