			function votado(){
					primero="votado=true;";
					segundo=primero+"domain=pachatv.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=350,height=240,toolbar=no,scrollbars=yes,status=no');
						top.resultados.document.write('<br><html><head><title>Encuesta Resultado</title><link rel="stylesheet" href="../code/pacha.css"></head><body class="popupEncuestas" bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >');
						top.resultados.document.write('<table width="300" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td colspan="3"><img src="../img/tit_caja_encuesta.gif" width="300" height="55" /></td></tr><tr><td width="10" background="../img/encuesta_caja_izq.gif"><img src="../img/inv.gif" width="10" height="1" /></td><td width="300" align="center">');
						top.resultados.document.write('<table width="280" border="0" cellspacing="0" cellpadding="0"><tr><td align="center">&nbsp;</td></tr><tr><td align="center">Votando...<br /><br /><br /><br /></td></tr><tr><td class="pregEncuesta"><img src="../img/inv.gif" width="1" height="15" /><br /><br /></td></tr></table>');
						top.resultados.document.write('</td><td width="10" background="../img/encuesta_caja_der.gif"><img src="../img/inv.gif" width="10" height="1" /></td></tr><tr><td colspan="3"><img src="../img/encuesta_caja_inf.gif" width="300" height="13" /></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=350,height=240,toolbar=no,scrollbars=yes,status=no');
			document.encuesta.action='encuestas/resultados.jsp';
			document.encuesta.submit();
			}
