﻿//Abrir PopUp
function OpenPopUp(URL, SET)
{
    window.open(URL, '_blank', SET) 
}
//Popup Custom 2
function OpenPopUpCus(URL, OPE, SET)
{
    window.open(URL, OPE, SET) 
}

function explain(nomeFoto, local) {
  newwin = window.open('','','scrollbars=1,top=20,left=20,width=740,height=530');
  if (!newwin.opener) newwin.opener = self;
  with (newwin.document)
  {
   open();
   write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css">a {text-decoration:none;color:green;}a:hover {text-decoration:underline;}</style><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>NPA - Imagem Ampliada</title></head><body style="background-color: #DFEFCF; font-family: Tahoma; font-size: 11px;"><div style="background-color: #BFE0A0; text-align: right; padding-top: 5px; padding-right: 5px; padding-bottom: 5px;"><a href="javascript:void(0);" onclick="javascript:window.close()">Fechar</a></div><div style="text-align: center; padding-top: 5px;"><img alt="Imagem Ampliada" src="imagens/fotos/'+ local +'/'+ nomeFoto +'.jpg" border="0" /></div></body></html>');
   close();
  }
}
