			function votado(){
					primero="votado=true;";
					segundo=primero+"domain=canalmgm.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>Encuestas Cinestar</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><SCRIPT language="Javascript" src="code/scripts.js"></SCRIPT></head><body bgcolor="#000000" valign="top"><br/><table width="300" border="0" align="center" cellpadding="0" cellspacing="0" valign="top"><tr><td class="pint_marco"><img src="img/inv.gif" width="1" height="1" /></td><td><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td class="pint_marco"><img src="img/inv.gif" width="1" height="1" /></td></tr></table><table width="298" border="0" cellpadding="0" cellspacing="0"><tr><td width="300" align="center" valign="top" class="bg_resultados"><br /><br /><br /><br /><br /><span STYLE="color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 10px; ">votando...</span><br /><br /><br /><br /><br /><br /><br /></td></tr></table><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td class="pint_marco"><img src="img/inv.gif" width="1" height="1" /></td></tr></table></td><td class="pint_marco"><img src="img/inv.gif" width="1" height="1" /></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();
			}
			
		

		