// JavaScript Document
timeout =0; // esta linha não deixa a janela fechar sozinha

function fotV(FOTO, nome) {
windowprops = "toolbar=no,left=0,top=0,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=350,height=460";

text = "<html><script type=text/javascript src=../fotos.js></script><link href=../fotos.css rel=stylesheet type=text/css><head><title>Prato de Sopa</title></head><body><center";
text += "><table width=330 height=440 border=0 cellpadding=0 cellspacing=0><tr><td background='" + FOTO + "'>";
text += "<a href=javascript:window.close()><img src=../../comum/px1.gif width=329 height=439 border=0 class=borda alt='clique para fechar'>";
text += "</a></td></tr></table></center></body></html>";

janela = window.open("", "", windowprops);
janela.document.open();
janela.document.write(text);
janela.document.close();
}
function fotH(FOTO, nome) {
windowprops = "toolbar=no,left=0,top=0,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=460,height=350";

text = "<html><script type=text/javascript src=../fotos.js></script><link href=../fotos.css rel=stylesheet type=text/css><head><title>Prato de Sopa</title></head><body><center";
text += "><table width=440 height=330 border=0 cellpadding=0 cellspacing=0><tr><td background='" + FOTO + "'>";
text += "<a href=javascript:window.close()><img src=../../comum/px1.gif width=439 height=329 border=0 class=borda alt='clique para fechar'>";
text += "</a></td></tr></table></center></body></html>";

janela = window.open("", "", windowprops);
janela.document.open();
janela.document.write(text);
janela.document.close();
}