function OpenDetail(img, width, height)
{
	var scrollbars = "no";
				
	var windowWidth = window.screen.width;
	var windowHeight = window.screen.height - 48;
					
	if (height > windowHeight)
	{
		height = windowHeight;
		width = width + 16;
		scrollbars = "yes";
	}
	
	if (width > windowWidth)
	{
		if (scrollbars == "yes")
			width = windowWidth - 16;
		else
			width = windowWidth;
			
		height = height+16;
			
		scrollbars = "yes";
	}
	
	var top = (windowHeight - height) / 2;
	var left = (windowWidth - width) / 2;
	
	var features = "resizable=no, scrollbars=" + scrollbars + ", status=no, titlebar=yes, toolbar=no, width=" + width + "px, height=" + height + "px, left=" + left + "px, top=" + top + "px";
	var a = window.open("detail.php?id=" + img, "_blank", features, false);
	a.focus();
}
