<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

 //Anti-spam email link - html"<script language="JavaScript">email()</script>"
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//Anti-spam email link - html"<script language="JavaScript">email()</script>"
function email() {
user = "sales";
site = "goetrefarm.co.uk";
document.write('<a href=\"mailto:' + user + '@' + site + '?subject=website contact message\">');
document.write(user + '@' + site + '</a>');
}

function del(thelink, id)
{
var is_confirmed = confirm('' + id + '?');
    if (is_confirmed) {thelink.href;}
    return is_confirmed;
}

function SetAllCheckBoxes(FormName, FieldName, CheckValue)
{
	if(!document.forms[FormName])
		return;
	var objCheckBoxes = document.forms[FormName].elements[FieldName];
	if(!objCheckBoxes)
		return;
	var countCheckBoxes = objCheckBoxes.length;
	if(!countCheckBoxes)
		objCheckBoxes.checked = CheckValue;
	else
		// set the check value for all check boxes
		for(var i = 0; i < countCheckBoxes; i++)
			objCheckBoxes[i].checked = CheckValue;
}

function emailCheck (emailStr) {

//Check for a name
if (document.emailform.order_name.value=="") { 
		 alert("Please enter your name");
		 document.emailform.order_name.focus();
		 return false;
}

//Check for a address
if (document.emailform.order_address.value=="") { 
		 alert("Please enter your Address");
		 document.emailform.order_address.focus();
		 return false;
}


var checkTLD=1;
var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
var emailPat=/^(.+)@(.+)$/;
var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
var validChars="\[^\\s" + specialChars + "\]";
var quotedUser="(\"[^\"]*\")";
var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
var atom=validChars + '+';
var word="(" + atom + "|" + quotedUser + ")";
var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
var matchArray=emailStr.match(emailPat);

if (matchArray==null) {

alert("Email address seems incorrect (check @ and .'s)");
document.emailform.order_email.focus();
return false;
}
var user=matchArray[1];
var domain=matchArray[2];

for (i=0; i<user.length; i++) {
if (user.charCodeAt(i)>127) {
alert("Ths username contains invalid characters.");
document.emailform.order_email.focus();
return false;
   }
}
for (i=0; i<domain.length; i++) {
if (domain.charCodeAt(i)>127) {
alert("Ths domain name contains invalid characters.");
document.emailform.order_email.focus();
return false;
   }
}

if (user.match(userPat)==null) {

alert("The username doesn't seem to be valid.");
document.emailform.order_email.focus();
return false;
}

var IPArray=domain.match(ipDomainPat);
if (IPArray!=null) {

for (var i=1;i<=4;i++) {
if (IPArray[i]>255) {
alert("Destination IP address is invalid!");
document.emailform.order_email.focus();
return false;
   }
}
return true;
}
 
var atomPat=new RegExp("^" + atom + "$");
var domArr=domain.split(".");
var len=domArr.length;
for (i=0;i<len;i++) {
if (domArr[i].search(atomPat)==-1) {
alert("The domain name does not seem to be valid.");
document.emailform.order_email.focus();
return false;
   }
}

if (checkTLD && domArr[domArr.length-1].length!=2 && 
domArr[domArr.length-1].search(knownDomsPat)==-1) {
alert("The address must end in a well-known domain or two letter " + "country.");
document.emailform.order_email.focus();
return false;
}

if (len<2) {
alert("This address is missing a hostname!");
document.emailform.order_email.focus();
return false;
}

//Check for a phone
if (document.emailform.order_tel.value=="") { 
		 alert("Please enter a tel number");
		 document.emailform.order_tel.focus();
		 return false;
}

//Check for a Business
if (document.emailform.payment.value=="") { 
		 alert("Please select payment type");
		 document.emailform.payment.focus();
		 return false;
}

return true;
}
//-->