//
// Funções Pop-up
//
function pop(link, name, w, h, s)
{
  v=window.open(link, name, "directories=no,height=" + h + ",width=" + w +
  ",hotkeys=no,location=no,menubar=no,resizable=no,scrollbars=" + s +
  ",status=no,toolbar=no,copyhistory=no,screenX=5,screenY=5,top=5,left=5");
  v.focus();
}

// PopUp Foto
function fWinImg(vImg,vTitulo) 
{
    vJanela=+vTitulo;
	vImg=vImg;
	var oWindow = window.open("",vJanela,"left=5,top=5,width=288,height=300,resizable=no,menubar=no,toolbar=no,location=no,directories=no,scrollbars=no");
	oWindow.document.open()
	oWindow.document.write("<html><head><title>"+vTitulo+"</title></head><body topmargin=0 leftmargin=0 bgcolor=#dadbef onload='window.resizeTo(window.img.width+5,window.img.height+20)'>")
	oWindow.document.write("<table border=0 width=100% height=100% cellspacing=0 cellpadding=0>")
	oWindow.document.write("<tr><td align=center valign=middle><img alt='Para salvar a imagem clique ' id=img src='"+vImg+"'></td></tr></table>")
	oWindow.document.write("</body></html>")
	oWindow.document.close()
	oWindow.focus()
}

