function OpenImg(path,id) {

 if (path=='') return;

 var win = open('',id,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=100,height=100');

 win.document.write("<html> \n");
 win.document.write("<head><title>Imagem Ampliada</title> \n");
 win.document.write("<style> \n");
 win.document.write("body{margin:0px;} \n");
 win.document.write("</style> \n");
 win.document.write("<script language=\"JavaScript\"> \n");
 win.document.write("var isNN,isIE; \n");
 win.document.write("if (parseInt(navigator.appVersion.charAt(0))>=4){ \n");
 win.document.write("isNN=(navigator.appName==\"Netscape\")?1:0; \n");
 win.document.write("isIE=(navigator.appName.indexOf(\"Microsoft\")!=-1)?1:0;} \n");
 win.document.write("function reSizeToImage() { \n");
 win.document.write("   if (isIE){ \n");
 win.document.write("      window.resizeTo(100,100); \n");
 win.document.write("      width=155-(document.body.clientWidth-document.images[0].width); \n");
 win.document.write("      height=165-(document.body.clientHeight-document.images[0].height); \n");
 win.document.write("      window.resizeTo(width,height); \n");
 win.document.write("	  } \n");
 win.document.write("   if (isNN){ \n");
 win.document.write("      window.innerWidth=document.images[\"id"+id+"\"].width; \n");
 win.document.write("      window.innerHeight=document.images[\"id"+id+"\"].height;} \n");
 win.document.write("	  } \n");
 win.document.write("</script> \n");
 win.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"includes/style.css\"/> \n");
 win.document.write("<style> \n");
 win.document.write("body { margin: 10px 10px 10px 10px; background-color: #FFFFFF; } \n");
 win.document.write("</style> \n");
 win.document.write("</head> \n");
 win.document.write("<body onload='reSizeToImage();'> \n");
 win.document.write("<a href=\"javascript:window.close();\" class=\"ms_link1\" style=\"display:block;padding:5px 15px 5px 0px;text-align:right;\" title=\"fechar janela\">fechar janela</a> \n");
 win.document.write("<div class=\"ms_border1\"><img name=\"id"+id+"\" src=\""+path+"\" alt=\"Imagem ampliada\" /></div> \n");
 win.document.write("<div class=\"ms_normal1 ms_clear\" style=\"padding:5px 0px 5px 0px;\">&copy; 2006 Presidência da República Portuguesa</div>");
 win.document.write("</body> \n");
 win.document.write("</html> \n");

 win.document.close();
 win.focus();

 }
