	// JavaScript Document
	function cambiar(item)
	{
		accion = item.split("_")[1];
		elemento = item.split("_")[0];
		if(accion =="On")
		{
			document.getElementById(elemento).bgColor = "#38A3D5"
			document.getElementById("td_bullet_" + elemento).bgColor = "#38A3D5"
			document.getElementById("bullet_" + elemento).src = "img/bullet_menu_navegacion_On.jpg"
		}
		else
		{
			document.getElementById(elemento).bgColor = "#ffffff"
			document.getElementById("td_bullet_" + elemento).bgColor = "#ffffff"
			document.getElementById("bullet_" + elemento).src = "img/bullet_menu_navegacion_Off.jpg"
		}
	}
	function cambiar2(elemento,accion)
	{
		if(accion ==1)
			document.getElementById("caja_roja" + elemento).src = "img/bullet_menu_sup_On.jpg"
		else
			document.getElementById("caja_roja" + elemento).src = "img/bullet_menu_sup_Off.jpg"
	}
	
	var winn;
	function abrirFlotante(cual,wid,heig,scrol){	
		var LeftP = (screen.width) ? (screen.width-wid) / 2 : 0;
		var TopP = (screen.height) ? (screen.height-heig) / 2 : 0;
		if(screen.width == 800 || screen.height == 600) scrol = 'auto';
		if(winn){
			if(!winn.closed) winn.close();
			winn = null;
		}
		window.focus();
		winn=eval("open('"+cual+"','','width="+wid+",height="+heig+",top="+TopP+",left="+LeftP+",scrollbars="+scrol+"')");
	}
	
	function rollover_on(cual)
	{
		eval("document.getElementById('"+cual+"').src = 'img/"+cual+"_on.gif'");
	}
	
	function rollover_off(cual)
	{
		eval("document.getElementById('"+cual+"').src = 'img/"+cual+".gif'");
	}