function basket(){
alert("This site is no longer active, but you may still use it as an information resource only");
}

function setCookie(name, value) {
   document.cookie = name + "=" + escape(value);
}

function getCookie(name)
	{
	var search = name + "="
	if (document.cookie.length > 0)	// if there are any cookies
		{ 
		offset = document.cookie.indexOf(search) 
		if (offset != -1)	// if cookie exists 
			{
			offset += search.length	// set index of beginning of value
			end = document.cookie.indexOf(";", offset)	// set index of end of cookie value
			if (end == -1) 
				end = document.cookie.length
			return unescape(document.cookie.substring(offset, end))
			} 
		}
	return " ";
	}

function addtoBasket(add) {
	var value = getCookie("Basket");
	value += add;
	setCookie("Basket", value);
}

function gotoCheckout() {
//	var checkout = "https://secure.steadfastsoftware.co.uk/secure/4hccheckout.php?";
//	checkout += escape(getCookie("Basket"));
//	window.location=checkout;
alert("This site is no longer active, but you may still use it as an information resource only");
}

function hide(name) {
var layer = document.getElementById(name);
layer.style.visibility = 'hidden';
}

function show(name) {
var layer = document.getElementById(name);
layer.style.visibility = 'visible';
}

function brochure() {
//if (document.getElementById) document.write("<p class='layerbg'>To have a brochure for this product sent to you by post, please follow this link and fill in our 'Contact Form'.");
if (document.getElementById) document.write("<p class='layerbg'>This site is no longer active, but you may still use it as an information resource only.");
}