/**
 * $Date: 2005-07-28 $
 *
 * @author Aidas Bendoraitis aka Archatas
 */
function zoomImage(strOriginalFile, strTitle, intImageWidth, intImageHeight) {
	var objWin = window.open("","","width=" + intImageWidth + ",height=" + intImageHeight + ",left=" + (screen.availWidth-intImageWidth)/2 + ",top="+(screen.availHeight-intImageHeight)/2);
	objDoc = objWin.document;
	objDoc.open();
	objDoc.write('<html><head><meta http-equiv="content-type" content="text/html;charset=utf-8" /><title>' + strTitle + '</title><style type="text/css">body {margin: 0px; padding: 0px;} img {cursor:pointer;cursor: hand}</style></head><body><img src="'+strOriginalFile+'" alt="'+strTitle+'" onclick="window.close();" width="100%" height="100%" /></body></html>');
	objDoc.close();
}
function zoomImage2(strOriginalFile, strTitle, intImageWidth, intImageHeight) {
	var objWin = window.open("","","resizable=yes,scrollbars=yes,width=" + intImageWidth + ",height=" + intImageHeight + ",left=" + (screen.availWidth-intImageWidth)/2 + ",top="+(screen.availHeight-intImageHeight)/2);
	objDoc = objWin.document;
	objDoc.open();
	objDoc.write('<html><head><meta http-equiv="content-type" content="text/html;charset=utf-8" /><title>');
	objDoc.write(strTitle + '</title><style type="text/css">body {margin: 0px; padding: 0px;text-align:center;vertical-align:middle;} img {cursor:pointer;cursor: hand}</style></head><body><img src="');
	objDoc.write(strOriginalFile+'" alt="'+strTitle+'" onclick="window.close();"  /></body></html>');
	objDoc.close();
}