function OpenZoomWindow(sImg,sTitle,sWidth,sHeight,sClose,sDescription){	if(sClose==null) sClose = "close";	var sTotHeight;	sTotHeight = (sHeight/1+17);	var oWin = window.open('','','status=0,scrollbars=0,height=' + sTotHeight + 'px,width='+sWidth+'px');	var sHtml = '<html>\n';	sHtml += '<head><title>' + sTitle + '</title>\n';	sHtml += '<style type=\"text/css\">\n';	sHtml += '.fntDefault { text-decoration: none; font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #ffffff }\n';	sHtml += '</style>\n</head>\n';	sHtml += '<body bgcolor=\"#1f364c\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n';	sHtml += '<table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n';	sHtml += '<tr><td align=\"center\" valign=\"middle\"><img border=\"0\" src=\"'+sImg+'\"></td></tr>\n';	sHtml += '<tr height=\"2\"><img src=\"img/np.gif\" height=\"2\"></td></tr>\n';	sHtml += '<tr height=\"15\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tr>\n';	if(sDescription!=null && sDescription!=''){		sHtml += '<td align=\"left\" valign=\"middle\" class=\"fntDefault\" style=\"padding-left:5px;\">' + sDescription + '</td>\n';	}	sHtml += '<td align=\"right\" valign=\"middle\" class=\"fntDefault\" style=\"padding-right:5px;\"><a class=\"fntDefault\" href=\"javascript:window.close()\">' + sClose + '</a></td></tr></table></td></tr>\n';	sHtml += '</table>\n';	sHtml += '</body>\n';	sHtml += '</html>';	oWin.document.write(sHtml);}