function AbrirFoto( img_path , W , H ){

var NovaJanela = window.open('','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+W+',height='+H+',top=50,left=100');
 NovaJanela.document.write('<html><head><title>Mapa - SmartSystem Consulting</title></head>');
 NovaJanela.document.write('<body topmargin=0 leftmargin=0>');
 NovaJanela.document.write('<img src=' + img_path +'>');
 NovaJanela.document.write('</body></html>');
 NovaJanela.document.close();
}