// JavaScript Document
var ob_ant, contiene=false;
function desplegar(obj, nombre)
{
		Effect.Appear(obj);
		ob_ant=obj;
		contiene=true;
}
function _show(obj){
	if (document.getElementById(obj).style.display=="none")
	{
			if(contiene==true)
			{		      
			  new Effect.SlideUp(ob_ant);
			   Effect.Fade(ob_ant);
			}
		new Effect.SlideDown(obj);
		Effect.Appear(obj);
		ob_ant=obj;
		contiene=true;	
	}
}