// JavaScript Document
function divFoto(url,leg,pos){ 
 
document.getElementById('fundofoto').style.display = ''; 
document.getElementById('foto').style.display = ''; 
document.getElementById('foto').innerHTML = "<table style='width: 100%' cellpadding='0' align='center' cellspacing='0'><tr><td><span style='font-size:14px'> <a href='JavaScript:fechar()'>"+leg+"<img src='img.png/botao_fechar.gif' border='0'></a><a href='http://200.198.213.88/SGI'>Clique aqui para voltar à galeria<img src='img.png/botao_voltar.gif' border='0'></a></span></td><td style='text-align:right; vertical-align:top'></td></tr><tr><td colspan='2'><img src="+url+"></td></tr></table>"; 
document.getElementById('foto').style.top = pos+"px"; 
} 
 
function fechar(){ 
document.getElementById('foto').style.display = 'none'; 
document.getElementById('fundofoto').style.display = 'none'; 
} 
