// Switch product image
function switchImg(targetId) {
	var main = document.getElementById("mainImg");
	main.src = '/image.php?id=' + targetId;
}


// Jump to new URL
function goTo(url) {
	location.href = url;
}