function EscondeMsn() {
	document.getElementById('msn').style.visibility='hidden';	
}

function janelaImagem (PUBLIC_PATH,GALERIA){ 

		var URL     =  PUBLIC_PATH + 'galeria/imagens/?g='+GALERIA;
		var largura = 500;
		var altura 	= 380;
		window.open(URL,"Galeria","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=50,left=50,width="+largura+",height="+altura);
}
function janelaNoticia (PATH,KEY){ 

	var URL     =  PATH + '/index/noticia/?noticia='+KEY;
	var largura = screen.width;
	var altura 	= screen.height;
	window.open(URL,"Noticia","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,top=50,left=50,width="+largura+",height="+altura);
}

function ViewMensagem(elementId){
	element = document.getElementById(elementId);
	element.style.display = (element.style.display == 'none')? '' : 'none';	
}

function PrintNoticia(id, pg, base) {
	var oPrint, oJan;
	oPrint  = window.document.getElementById(id).innerHTML;
	oJan    = window.open(pg);
	oJan.document.write('<link rel="stylesheet" type="text/css" href="'+base+'css/default/index.css" />');
	oJan.document.write('<link rel="stylesheet" type="text/css" href="'+base+'css/default/layout.css" />');
	oJan.document.write('<link rel="stylesheet" type="text/css" href="'+base+'css/layout/modelo-1-print.css" />');
	oJan.document.write(oPrint);
	oJan.history.go();
	oJan.window.print();
}

function Pesquisar(){
	form = document.pesquisa;
	form.submit();
		
}

function maxLength(textAreaField, limit) {
	var ta = document.getElementById(textAreaField);
	
	if (ta.value.length >= limit) {
		ta.value = ta.value.substring(0, limit-1);
	}
}
