// JavaScript Document
<!--
function contactCheck() 
{
if (document.form.txtEmail_OPT.value=="" && document.form.txtPhone_OPT.value=="")
	{
	alert("We need some contact details so that we can respond to you. \n\nPlease enter either your phone number or your email address");
	document.form.txtPhone_OPT.focus();
	return false;
	}
}
// -->