			function votado(){
					primero="votado=true;";
					segundo=primero+"domain=canalsomos.tv;";
					document.cookie=segundo;
			}
		   function irEncuestas(idEncuesta){
					if (document.cookie.indexOf("votado")!=-1){
					document.location.href='encuestas.jsp?idEncuesta='+idEncuesta;
					} else {
					document.location.href='encuestas.jsp';										
					}
			}
			function vote () {
				if (document.cookie.indexOf("votado")!=-1){
					alert("Solo un voto permitido!");
				}
				else{
					if (voteOK) {
						resultados= window.open('','resultados','width=317,height=240,toolbar=no,scrollbars=yes,status=no');
						top.resultados.document.write('<html><head><title>Resultados encuesta </title><link rel="stylesheet" href="/code/somos.css"><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><style type="text/css"><!-- body {	background-color: #cbe6ff;}--></style></head><body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="" >');
						top.resultados.document.write('<table width="300" border="0" cellspacing="10" cellpadding="0"> <tr align="center"><td><table width="100%" border="0" cellpadding="0" cellspacing="0" class="color03"><tr><td><img src="/img/det_procEnc_sup.gif" width="280" height="4"></td></tr><tr><td background="/img/bg_procEnc.gif"><table class="color03" width="100%" border="0" cellspacing="0" cellpadding="0">');
						top.resultados.document.write('<tr><td height="60" valign="top" class="pregEncuesta"><img src="/img/lg_procEnc.gif" height="44"></td></tr><tr><td class="pregEncuesta"><br><br><br>... Votando ...<br><br><br><br><br></td></tr><tr><td class="pregEncuesta"><img src="/img/inv.gif" width="1" height="15"><br><br></td></tr></table></td></tr><tr><td><img src="/img/det_procEnc_inf.gif" width="280" height="4"></td></tr></table></td></tr></table></body></html>');
						votado();
						document.encuesta.submit();						
					} else {
						alert ("Selecciona una opción antes de votar!");
					}
				}
			}
			function verResultados() {
			resultados= window.open('','resultados','width=317,height=240,toolbar=no,scrollbars=yes,status=no');
			document.encuesta.action='/encuestas/resultados.jsp';
			document.encuesta.submit();
			}
