// JavaScript Document

	function cambia_boton_inicio_on()
	{
		document.images['inicio_btn'].src = "botones/inicio_on.gif";
	}
	
	function cambia_boton_inicio_off()
	{
		document.images['inicio_btn'].src = "botones/inicio_off.gif";
	}
	
	function cambia_boton_galeria_on()
	{
		document.images['galeria_btn'].src = "botones/galeria_on.gif";
	}
	
	function cambia_boton_galeria_off()
	{
		document.images['galeria_btn'].src = "botones/galeria_off.gif";
	}
	
	function cambia_boton_calendario_on()
	{
		document.images['calendario_btn'].src = "botones/calendario_on.gif";
	}
	
	function cambia_boton_calendario_off()
	{
		document.images['calendario_btn'].src = "botones/calendario_off.gif";
	}
	
	function cambia_boton_contacto_on()
	{
		document.images['contacto_btn'].src = "botones/contacto_on.gif";
	}
	
	function cambia_boton_contacto_off()
	{
		document.images['contacto_btn'].src = "botones/contacto_off.gif";
	}
	
	function cambia_boton_patrocinadores_on()
	{
		document.images['patrocinadores_btn'].src = "botones/patrocinadores_on.gif";
	}
	
	function cambia_boton_patrocinadores_off()
	{
		document.images['patrocinadores_btn'].src = "botones/patrocinadores_off.gif";
	}
	
	function carga_contenido(opcion)
	{
		location.href="principal.php?opcion=" + opcion
	}
	
	function carga_contenido_grande(web, id)
	{
		html = '<iframe src="' + web + '"  width="514" height="475" frameborder="0"></iframe>';
		document.getElementById(id).innerHTML = html;
	}
	
	function muestra_calendario()
	{
		window.open("data/calendario.php");
	}
	
	function mensaje_construccion()
	{
		window.alert("En Construccion. Proximamente en funcionamiento");
	}
	
	function abre_web_externa(web)
	{
		window.open(web, "_new");
	}
	
	
	function cambia_patrocinador(imagen, ancho, alto)
	{
		document.images['patrocinadores_detalle'].src = "imagenes/" + imagen;
		document.images['patrocinadores_detalle'].width = ancho;
		document.images['patrocinadores_detalle'].height = alto;
		document.getElementById('tabla_detalle').width = ancho;
	}