// JavaScript Document
// janela('caminho/foto.jpg','largura','altura',título)

function janela(foto,w,h,t){
wi= parseInt(w)-20;
he= parseInt(h);
dimension = 'width='+w+',height='+he+',toolbar=0,location=0,directories=0,status=0,scrollbars=0,menubar=0,resizable=0';
newpop = window.open('','popup',dimension);
newpop.document.open();
newpop.document.write('<html><head><title>'+t+'</title></head><script language="JavaScript" src="java/window.js"></script><script>resizeOuterTo('+w+','+he+')</script>');
newpop.document.write('<body marginheight="0" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" bgcolor="#EEEEEE">');
newpop.document.write('<img src="'+foto+'" width="'+w+'" height="'+h+'" onclick="javascript:window.close()">');
newpop.document.write('</body></html>');
newpop.document.close();
}
function resizeOuterTo(w,h) {
 if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
    popup.outerWidth=w;
    popup.outerHeight=h;
   }
   else popup.resizeTo(w,h);
 }
}