function ZoomImage(sImg,sComment){
	aHtmlLines = new Array();
	var iCnt=0;
aHtmlLines[0] = "<html><head><title>Šg‘å•\Ž¦</title>";
aHtmlLines[1] = "<style type='text/css'><!--";
aHtmlLines[2] = ".style2 {font-size: 90%;color: #FFFFFF;line-height: 150%;font-weight: normal;}";
aHtmlLines[3] = "--></style>";
aHtmlLines[4] = "</head><body scroll=auto bgcolor='#9999CC' text='#FFFFFF' topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>";
aHtmlLines[5] = "<table border=0 cellspacing=0 cellpadding=0 width=100% height=100%><tr><td align=center>";
aHtmlLines[6] = "<table border='0' cellspacing='0' cellpadding='0'>";
aHtmlLines[7] = "<tr><td><table border='0' cellspacing='0' cellpadding='10'><tr><td bgcolor='#333366'><a href='javascript:window.close()'><img src='" + sImg + "' border=0></a></td></tr></table></td>";
aHtmlLines[8] = "</tr><tr><td><table border='0' cellspacing='0' cellpadding='10'><tr><td><span class='style2'>" + sComment + "</span></td></tr></table></td>";
aHtmlLines[9] = "</tr><tr><td>&nbsp;</td></tr>";
aHtmlLines[10] = "</table></td></tr></table></body></html>";

	var iWindowLeft=0;
	var iWindowTop=0;
	var iWindowWidth = 440;
	var iWindowHeight= 440;
	var iScreenWidth = screen.width;
	var iScreenHeight = screen.height;
	
	iWindowLeft = (iScreenWidth - iWindowWidth) / 2;
	iWindowTop = (iScreenHeight - iWindowHeight) / 2;
	
	wImg = window.open('', '_blank','width=' + iWindowWidth + ',' + 'height=' + iWindowHeight + ',top=' + iWindowTop + ',left=' + iWindowLeft + ',status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes');
	for(iCnt=0; iCnt < aHtmlLines.length; iCnt++){
		wImg.document.write(aHtmlLines[iCnt]);
	}
}