function show_foto(img_path,img_alt){
var str, StrBody;
str = 'resizable=yes,width=40,height=40,screenX=200,screenY=200,left=10,top=10,scrollbars=yes';

if (document.all){ 
	StrBody = '<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" onblur="self.window.close();" onresize="self.window.location.reload();">';
} 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+32),(height+31));');
winn.document.writeln(' }');
winn.document.writeln('}');
winn.document.writeln('</script>');	
winn.document.writeln('</head>');
winn.document.writeln(StrBody);
winn.document.writeln('<img name="image" src='+ img_path + ' border=0 alt="'+img_alt+'" onload="resize_img();">');
winn.document.writeln('</body>');
winn.document.writeln('</html>');		
winn.document.close();
}