function abrirPopup(URL,Name,features){
	window.open(URL,Name,features);
}
function abreInformativo(URL,Name,features) { 
	window.open(URL,'','scrollbars=yes,resizable=yes,width=650,height=450');
}
function leiaMais(str1,str2){
	var o1 = document.getElementById(str1);
	var o2 = document.getElementById(str2);
	if(o2.style.display=='none'){
		o1.style.display='none';
		o2.style.display='';
	}else{
		o1.style.display='';
		o2.style.display='none';
	}
}
