// JavaScript Document


//*handlers de movimiento de window popup
var bPopup=document.getElementById("boton_mostrar");
var alto=document.getElementById("content_info").offsetHeight;

var interv;
bPopup.isVisible=true;
/*document.MOSTRAR="mostrar";
document.OCULTAR="ocultar";*/

bPopup.onclick=function()
{
	if(interv==null)
		interv=1;

	if(this.isVisible)
	{
		clearInterval(interv);
		interv=tweenY("content_info",-alto+21,0.06);
		this.isVisible=false;

/*		this.firstChild.innerHTML=document.MOSTRAR;*/
		this.style.backgroundImage="url("+document.boton_mostrar+")";
		
	}
	else
	{
		clearInterval(interv);
		interv=tweenY("content_info",0,0.06);
		this.isVisible=true;
		
/*		this.firstChild.innerHTML=document.OCULTAR;*/
		this.style.backgroundImage="url("+document.boton_ocultar+")";
	}


}


