			function votado(){
					primero="votado=true;";
					segundo=primero+"domain=canalbuzz.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=290,toolbar=no,scrollbars=no,status=no');
						top.resultados.document.write('<html><head><title>Encuesta</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><SCRIPT language="Javascript" src="code/scripts.js"></SCRIPT><link rel="stylesheet" href="/code/buzz.css"></head><body class="popupEncuestas" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><br><table width="300" border="0" align="center" cellpadding="0" cellspacing="0" background="img/bg_encuesta.jpg"><tr><td height="250" align="center">Votando...</td></tr><tr><td background="img/pie_cajas.jpg"><img src="img/inv.gif" width="300" height="3" /></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=290,toolbar=no,scrollbars=no,status=no');
			document.encuesta.action='/encuestas/resultados.jsp';
			document.encuesta.submit();
			}
			
		

		