function showImage(img_path,img_alt){
var str, StrBody;
str = 'resizable=no, status=no, width=40,height=40,screenX=200,screenY=200,left=200,top=200';

if (document.all){ 
	StrBody = '<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"  onblur="self.window.close();">';
} else {
	StrBody = '<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"  onblur="self.window.close();">';
}
		
var winn = window.open('','show', str);
winn.document.open();
winn.document.writeln('<html>');
winn.document.writeln('<head>');
winn.document.writeln('<title>'+img_alt+'</title>');
winn.document.writeln('<script>');
winn.document.writeln('function resize_img() {');
winn.document.writeln('var width = document.image.width;');
winn.document.writeln('var height = document.image.height;');
winn.document.writeln('if (!(document.all)){ self.resizeTo(width,height); } else { self.resizeTo((width+12),(height + 31));');
winn.document.writeln(' }');
winn.document.writeln('}');
winn.document.writeln('</script>');	

winn.document.writeln('</head>');
winn.document.writeln(StrBody);
winn.document.writeln('<A href="#"><img name="image" src='+ img_path + ' border=0 alt="'+img_alt+'" onload="resize_img();" onclick="window.close();"></a><br>');
winn.document.writeln('</body>');
winn.document.writeln('</html>');		
winn.document.close();
}