﻿/*
 * $Id: OpenPopupPictureHtmlAnchor.js 12 2008-11-11 16:18:11Z marina $
 *
 * (c) 2007-2008 Microdivision
 */

// Opens the popup window with the picture.
function openPopupPicture(obj, imgsrc, title, width, height)
{	
	var scrollbars = (width > maxWidth || height > maxHeight) ? "1" : "0";
	var maxWidth = 800;
	var maxHeight = 600;
	var windowWidth = width > maxWidth ? maxWidth : width;
	var windowHeight = height > maxHeight ? maxHeight : height;
	var features = "width=" + windowWidth + ",height=" + windowHeight + ",status=0,toolbar=0,menubar=0,location=0,scrollbars=" + scrollbars;
	var popupImage = window.open("", "image", features);
	if (popupImage != null)
	{
		popupImage.document.write("<html>");
		popupImage.document.write("<head>");
		popupImage.document.write("<title>" + title + "</title>");
		popupImage.document.write("</head>");
		popupImage.document.write("<body style='margin: 0px; background: white;'>");
		popupImage.document.write("<table cellpadding='0' cellspacing='0' border='0' style='width: 100%; height: 100%'>");
		popupImage.document.write("<tr><td style='text-align: center; vertical-align: center;'><img id='itemImage' src='" + imgsrc + "' alt='" + title + "' title='" + title + "' /></td></tr>");
		popupImage.document.write("</table>");
		popupImage.document.write("</body>");
		popupImage.document.write("</html>");
		popupImage.document.close();
	}
	else
	{
		alert("Popup windows are not allowed. Please, allow popup windows and click again to see the enlarged image.");
	}
	return false;
}