// JavaScript Document

	function Carga(direccion) {
		info.document.location = direccion;		
	}


	function Muestra(nombreCapa) {
	
		if (document.getElementById(nombreCapa).style.visibility=="hidden") {
			document.getElementById(nombreCapa).style.position = "relative";
			document.getElementById(nombreCapa).style.left=0;
			document.getElementById(nombreCapa).style.visibility = "visible";
		}
		else {
			document.getElementById(nombreCapa).style.visibility = "hidden";
			document.getElementById(nombreCapa).style.position = "absolute";
			document.getElementById(nombreCapa).style.left=-100;		
		}
	}
	
	function MuestraDia() {

			dows = new Array("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
			months = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
			now = new Date();
			dow = now.getDay();
			d = now.getDate();
			m = now.getMonth();
			h = now.getTime();
			y = now.getYear();
			document.write(dows[dow]+" "+d+" de "+months[m]+" de "+y);	
	}
	
	function Votar(accion) {
		
		direccion = "encuesta/votar.php?accion=" + accion +"&voto=" + formu.respuesta.value;
		window.open(direccion, '', 'width=400, height=270');
		
	}

	function Manda() {
		document.formu.guardar.disabled = true;
		document.formu.terminar.disabled = true;
		formu.submit();
	}

