<!-- 
function MM_popupMsg() { //v1.0
  alert('Please Note: Only select this option if someone is available at the delivery address 9-5pm Mon-Fri to sign for your order. Couriers will not leave packages behind without a signature.');
}
var message="";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")

function check_form(form)
{
return_boolean = true
 obj = eval(form)
 for(i=0;i<obj.length;i++)
 {
  field_name = obj.elements[i].name;
  if (field_name.indexOf("_chk") != -1)
  {
    if (obj.elements[i].value == "")
    {
      obj.elements[i].style.backgroundColor = "bisque";
      return_boolean = false
    }
    else
    {
      obj.elements[i].style.backgroundColor = "white";
    }
  }
 }
 	if (return_boolean == false) {
 	alert("Please enter the required information as indicated in orange.")
 	}
			
			if (form.email_chk.value != "") {
		retwo = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/
		validemail = retwo.exec(form.email_chk.value)
			if (validemail) {
			}
			else {
			alert(form.email_chk.value + " is not a valid email address")
			return false
			}
		}
	return return_boolean;
}
function validForm(passForm) {
			if (passForm.keyword.value == "" || passForm.keyword.value == "search this site") {
				alert("You must enter a search word")
				passForm.keyword.focus()
				return false
		}
		return true
}

function testInput() {
var Email =  new String(document.inputForm.Email.value); 
var Correct = true; 
CharCount=1; 
strLength=Email.length; 
while ((CharCount < strLength) && (Email.charAt(CharCount) != '@')) 
{ 
	CharCount++ 
} 
if ((CharCount>= strLength) || (Email.charAt(CharCount) != '@'))  
{  
	alert ('Email address not valid.') 
	Correct = false; 
} 
else 
{ 
	CharCount += 2; 
} 
while ((CharCount < strLength) && (Email.charAt(CharCount) != '.')) 
{ 
	CharCount++ 
} 
if ((CharCount>= strLength - 1) || (Email.charAt(CharCount) != '.')) 
{ 
	alert ('Email address not valid.') 
	Correct = false; 
} 
return Correct 
} 
<!-- Begin
function clearfield(){
//if (document.form3.keyword.value == "search this site")
if (document.form3.keyword.value == "search this site")
	document.form3.keyword.value = "";
}
//  End -->
// End -->
//-->
