function fecharPUB(){
	obj=document.getElementById("divPUB");
	if(obj){
		obj.style.display="none";
	}
}
function abrirPUB(){
	obj=document.getElementById("divPUB");
	if(obj){
		obj.style.display="";
	}
}
