<!--

function CheckEnq ()
{
  if (frmEnq.contactName.value == "") {
    alert( "Please enter your Name." );
    frmEnq.contactName.focus();
    return false ;
  }
	
  if (frmEnq.contactEmail.value == "") {
    alert( "Please enter your Email address." );
    frmEnq.contactEmail.focus();
    return false ;
  }else{ 
	var emailFilter=/^.+@.+\..{2,3}$/;
	var illegalChars= /[\(\)\<\>\,\;\:\\\/\"\[\]]/
	if (!(emailFilter.test(frmEnq.contactEmail.value))) { 
       alert( "You must enter a valid Email address.\n" );
	   frmEnq.contactEmail.focus();
	   return false ;
	}

	if (frmEnq.contactEmail.value.match(illegalChars)) {
		alert( "The email address contains illegal characters.\n" );
		frmEnq.contactEmail.focus();
		return false ;
	}	
  }
 
  return true ;
}

//-->
