// JavaScript Document
function exibeValor(obj){
		if (document.getElementById(obj).style.display=="none"){
			document.getElementById(obj).style.display="block";
		}
		else{
			document.getElementById(obj).style.display="none";
		}
			
}

function foto_detalhe2(cod_foto){
			var strPagina = 'adm/sistema_fotos/mostra_foto.asp?cod_foto='+cod_foto;
				window.open(strPagina,'PaginaDetalhe','scrollbars=no top=1 left=1 width=500 height=380');
}
	
function MM_openBrWindow(theURL,winName,features) { //v1.2
  window.open(theURL,winName,features);
}
function mostrardetalhe_noticias(id,aux){
  var strPagina = 'noticias/mostra_noticia.asp?id='+id+'&portal='+aux;
  window.open(strPagina,'PaginaDetalhe','scrollbars=yes top=1 left=1 width=500 height=390');
}
function mostrar_ultimas(){
  var strPagina = 'include/ultimas.asp';
  window.open(strPagina,'PaginaDetalhe','scrollbars=yes top=1 left=1 width=520 height=390');
}
function mostrar_mais_noticias(){
  var strPagina = 'include/lista_noticias.asp';
  window.open(strPagina,'PaginaDetalhe','scrollbars=yes top=1 left=1 width=520 height=700');
}

function mostrardetalhe(id,aux){
  var strPagina = '/adm/artigos/artigo.asp?id='+id;
 window.open(strPagina,"PaginaDetalhe","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=450");

}