function popupImage(imageFileName, imageWidth, imageHeight)
{
	myPopup = window.open ('', "myWin", "location=0,status=0,scrollbars=0,width=" + imageWidth + ",height=" + imageHeight);
	myPopup.document.write('<?xml version="1.0" encoding="iso-8859-1"?>');
	myPopup.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	myPopup.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
	myPopup.document.write('<head>');
	myPopup.document.write('<title>Large image</title>');
	myPopup.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
	myPopup.document.write('</head>');
	myPopup.document.write('<body leftmargin="0" topmargin="0">');
	myPopup.document.write('<img src="' + imageFileName + '" width="' + imageWidth + '" height="' + imageHeight + '" alt="" />');	
	myPopup.document.write('</body>');
	myPopup.document.write('</html>');
	myPopup.moveTo(100, 100);
}

