function showImage(img_path, img_alt, img_w, img_h){

var winn = window.open('','show', 'resizable=no, width=' + img_w + ', height=' + img_h + ', screenX=200, screenY=200, left=200, top=200');

winn.document.open();
winn.document.writeln('<html>');
winn.document.writeln('<head>');
winn.document.writeln('<title>'+img_alt+'</title>');
winn.document.writeln('<style type="text/css">*{margin:0; padding:0;}</style>');
winn.document.writeln('</head>');
winn.document.writeln('<body onblur="self.window.close();">');
winn.document.writeln('<img src='+ img_path + ' alt="'+img_alt+'" style="cursor: pointer;" onclick="window.close();" />');
winn.document.writeln('</body>');
winn.document.writeln('</html>');		
winn.document.close();
}