function display_image(imagePath, width, height, title)
{
	if(window.screen.height < height) 
	{
		height = window.screen.height - 60;
	}
	
	if(window.screen.width < width) 
	{
		width = window.screen.width - 10;
	}

	var topPosition  = (window.screen.height - height) / 2;
	var leftPosition = (window.screen.width - width) / 2
	var newWin = window.open("", "", "top=" + topPosition + ", left=" + leftPosition + ", menubar=0, scrollbars=0, resizable=0, width=" + width + ", height=" + height);

	newWin.document.write ("<html><head><title>" + title + "</title></head>");
	newWin.document.write ("<body style='margin: 0px; padding: 0px;'>");
	newWin.document.write ("<img border='0' src='" + imagePath + "' alt='" + title + "'/>");
	newWin.document.write ("</body></html>");
}

