// 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() {

		if (document.formu.titulo.value!="" && document.formu.codigo.value=="7398") {

			document.formu.guardar.disabled = true;

			document.formu.terminar.disabled = true;

			formu.submit();

		}

		else alert ("Falta el titular o el código antispam");

	}

