function showDetail(sUrl,width,height)
{
	if (typeof(width) == "undefined")
		width = 700;
	if (typeof(height) == "undefined")
		height = 600;
	var newWindow = window.open(sUrl,'newWindow','scrollbars=auto,width=' + width + ',height=' + height);
	if (window.focus)
		newWindow.focus();
}

function showImage(imageID,imagePath,extra,showcomment,height,width)
{
	if (typeof(extra) == "undefined")
		extra = "";
	if (typeof(showcomment) == "undefined")
		showcomment = "1";
	if (typeof(height) == "undefined")
		height = "620";
	if (typeof(width) == "undefined")
		width = "810";
	var newWindow = window.open('/showimage.asp?imagePath=' + imagePath + '&showcomment=' + showcomment + '&imageID=' + imageID + extra,'newWindow','scrollbars=yes,width=' + width + ',height=' + height + ',resizable=1');
	if (window.focus)
		newWindow.focus();
}

