  function carrega_galeria(div,frame,id){

		document.getElementById(div).style.display="block";
		document.getElementById(frame).src="galeria.php?gid="+id;
}

  function descarrega_galeria(div){
		document.getElementById(div).style.display="none";
}

  function texto_div(div,texto){
	document.getElementById(div).innerHTML = texto;
}