<!--

// Pre-load rollover images for menu bar

if (document.images) {

	var arImageSrc = new Array (
	  "images/home-on.gif"
	 ,"images/products-on.gif"
	 ,"images/contact-us-on.gif"
	 ,"images/enquiry-on.gif"
	 ,"images/about-us-on.gif"
	 ,"images/links-on.gif"
	 ,"images/our-reps-on.gif"
	)

	var arImageList = new Array ();

	for (counter in arImageSrc) {
		arImageList[counter] = new Image();
		arImageList[counter].src = arImageSrc[counter];
	}

}


function checkSearch() {

	var frm = document.forms['SearchBox'];
 	var re = /[^0-9a-zA-Z\s\-]/

	if (!frm.Search.value.length > 0)
	{
	alert("To search our product catalogue, please enter a word or phrase.");
	frm.Search.focus();
	return false;
	}

	if (frm.Search.value.match(re))
	{
	alert("Please use alphanumeric characters in your search rather than punctuation marks or other characters.");
	while (re.test(frm.Search.value) == true) {
		frm.Search.value=frm.Search.value.replace(re,"");
	}
	frm.Search.focus();
	return false;
	}

	return true;

}


//-->