//Menu  realizado con jquery y un poquito de Rubenzzo ( Rubén Martin Guerrero - ruben.martinguerrero@gmail.es)

function muestra_promo(op,nom_seccion,total_elem)
{

	var i=0;
	var id_capa="";
	
		for (i=0; i<total_elem; i++)
		{
			id_capa=nom_seccion + (i+1);	
			if(i+1!=op)
			{
				if(document.getElementById(id_capa).style.display == 'block') $("#"+id_capa).slideUp("slow",'');
			}	
			}
		id_capa=nom_seccion + op;
		if(document.getElementById(id_capa).style.display == 'none')
		{
			$("#"+id_capa).slideDown("slow",'');
		}
} 

function AbreFlotante (ancho,alto,res,estado,scroll,menu,tool,vinculos,direccion,full,accion)
{
      nAltura = screen.availHeight;
      nAnchura = screen.availWidth;
      nTop = (nAltura - alto - 30) * .5;
      nLeft = (nAnchura - ancho - 10) * .5;
      var wf = "";	
      wf = wf + "width=" + ancho;
      wf = wf + ",height=" + alto;
      wf = wf + ",top=" + nTop;
      wf = wf + ",left=" + nLeft;
      wf = wf + ",resizable=" + res;	
      wf = wf + ",status=" + estado;	
      wf = wf + ",scrollbars=" + scroll;
      wf = wf + ",menubar=" + menu;
      wf = wf + ",toolbar=" + tool;
      wf = wf + ",directories=" + vinculos;
      wf = wf + ",location=" + direccion;
      wf = wf + ",fullscreen=" + full;
      window.open(accion,"nuevaventana",wf);
}


