			function votado(){
					primero="votado=true;";
					segundo=primero+"domain=canalnatura.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=400,height=343,toolbar=no,scrollbars=no,status=no');
						top.resultados.document.write('<html><head><title>Encuesta Resultado</title><link rel="stylesheet" href="/code/natura.css"></head><body  bgcolor="#CCCC99" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><br/><table width="300" height="247" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#E5E2BD"><tr><td height="197" align="center" valign="top"><span class="txt_Encuesta"><br /><br /><br /><br /><br /><br />Votando...</span></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=400,height=343,toolbar=no,scrollbars=no,status=no');
			document.encuesta.action='/encuestas/resultados.jsp';
			document.encuesta.submit();
			}
			
		

		