function viewer(imageID,imageWidth,imageHeight,posLeft,posTop) {
        newWindow = window.open("","newWindow","width="+imageWidth+",height="+(45+parseInt(imageHeight))+",scrollbars=no,left="+posLeft+",top="+posTop);
        newWindow.document.open();
        newWindow.document.write('<html><title></title><meta http-equiv=\"content-type\" content=\"text/html; charset=windows-1251\"><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onBlur="self.close()">');
		newWindow.document.write('<img src=\"/includes/photos/'+imageID+'.jpg\" width='+imageWidth+' height='+imageHeight+'>');
//		newWindow.document.write('<br><iframe align=right src=\"/counter.inc\" height=40 width='+imageWidth+' frameborder=0 scrolling=no></iframe>');
		newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
}



