// remove the registerOverlay call to disable the close button
hs.registerOverlay({
	overlayId: 'closebutton',
	position: 'top right',
	fade: 2 // fading the semi-transparent overlay looks bad in IE
});

hs.graphicsDir = '/highslide/graphics/';

function ShowImage(imgPath)
{
	var objImage = document.getElementById("imgMainProduct");	
	objImage.src = '/umbraco/ImageGen.aspx?image=' + imgPath + '&width=200&constrain=true';
	var objImageZoom = document.getElementById("imgMainProductZoom");	
	objImageZoom.href = '/umbraco/ImageGen.aspx?image=' + imgPath + '&width=800&constrain=true';
}

