/*	function popImage(img, imgDescription)
	{
		alert(img + " => " + imgDescription)
	}
	*/
Width = 350;
Height = 300;
ImgWidth = 334;
ImgHeight = 210;
leftImg = Math.round((Width - ImgWidth) / 2);
topImg = Math.round((Height - ImgHeight) / 2);
var screenWidth = screen.availWidth;
var screenHeight = screen.availHeight;
var Left = Math.round((screenWidth - Width) / 2);
var Top = Math.round((screenHeight - Height) /2);

function popImage(img, imgDescription)
{
	window.open(img,'_blank','scrollbars=no,resizable=0,width='+Width+',height='+Height+',left=' + Left +',top=' + Top);
	 
}