function goTo(theURL) {
	if (!isDefined(currentDepartment)) {
		var currentDepartment = "";
	}
	document.location.href = theURL + "/" + currentDepartment;
}

function selectThumb(productID) {
	if (document.getElementById("img_" + productID)) {
		document.getElementById("img_" + productID).className  = "LinkImgSelected";
		document.getElementById("a_" + productID).className  = "LinkImgSelected";
	}
}