function gohome(){
	document.location.href = "main.asp";
}

function gosearch(){
	document.location.href = "search.asp";
}

function goindex(){
	document.location.href = "index.asp";
}

function gohelp(){
	document.location.href = "help.asp";
}

function gocontactus(){
	document.location.href = "contactus.asp";
}

function gofolder(xfolder){
	switch (xfolder){
		case "DONATE":
			sURL = "CMHA_donate.asp";
			break;
		case "NEW":
			sURL = "catalogue.asp?cat=new";
			break;
		case "HOME":
			sURL = "main.asp";
			break;
		default:
			sURL = "catalogue.asp?cat=" + xfolder;
	}

	document.location.href = sURL;
}

function gobasket(){
	document.location.href = "basket.asp";
}

function gowishlist(){
	document.location.href = "wishlist.asp";
}

function goorderreview(){
	document.location.href = "orderreview.asp";
}

function selproduct(xid){
	document.location.href = "product.asp?id=" + xid;
}

function gosub(xcat,xsub){
	document.location.href = "catalogue.asp?cat=" + xcat + "&sub=" + xsub;
}