function bigImage(what){
	typ = "width=150,height=150,scrollbars=no";
	dimensionApply = 'onLoad=" self.focus(); self.moveTo(20,20); resizeTo(document.images[\'show\'].width + 12, document.images[\'show\'].height + 31)";'

 ok = window.open("win_img.php?id="+what,"view",typ);
 ok.document.open();
 ok.document.write('<html><title>:: CISO - Image view</title><body topmargin="0" leftmargin="0" rightmargin="0" ');
 ok.document.write(dimensionApply + '">');
 ok.document.write('<a href="javascript:self.close();"><img src="' + what + '" border="0" name="show"></a>');
 ok.document.write('</body></html>');
 ok.document.close();

}