		   function votado(){
					primero="votado=true;";
					segundo=primero+"domain=canal18.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=268,height=190,toolbar=no,scrollbars=yes,status=no');
						top.resultados.document.write('<html><head><title>Encuesta Resultado</title><link rel="stylesheet" href="../code/c18.css"></head><body bgcolor="#4D4A4F" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" ><table width="250" border="0" cellspacing="0" cellpadding="0"><tr><td>');
						top.resultados.document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="right" valign="middle" bgcolor="2A2A2A"><td height="70"><img src="../img/logo_procEnc.gif" width="76" height="57"></td></tr></table><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="center"><td>&nbsp;</td></tr><tr><td class="pregEncuesta"><b>Votando ...</b></td></tr><tr align="center"><td>&nbsp;</td></tr></table></td></tr></table>');
						top.resultados.document.write('</body></html>');
						votado();
						document.encuesta.submit();						
					} else {
						alert ("Selecciona una opción antes de votar!");
					}
				}
			}
			function verResultados() {
			resultados= window.open('','resultados','width=268,height=250,toolbar=no,scrollbars=yes,status=no');
			document.encuesta.action='/encuestas/resultados.jsp';
			document.encuesta.submit();
			}
