function getCookie(name) {
 var dc = document.cookie;
 var prefix = name + "=";
 var begin = dc.indexOf("; " + prefix);
 if (begin == -1) {
 begin = dc.indexOf(prefix);
 if (begin != 0) return null;
 } else
 begin += 2;
 var end = document.cookie.indexOf(";", begin);
 if (end == -1)
 end = dc.length;
 return unescape(dc.substring(begin + prefix.length, end));
 } <!-- END OF getCookie() -->
 var curCookie = "";
 function setCookie(fifa04, value) {
 curCookie = fifa04 + "=" + value ;
 document.cookie = curCookie;
 }
 <!-- END OF setCookie() -->
function getcook()
{
name = getCookie('flag');
if(name == "null" || name == "")
{
 setCookie('flag','yes');
 selIndex = 0
 for (i=0;i<20;i++)
 {
  if (document.form2.email[i].checked)
   selIndex = i;
 }
 selVal = document.form2.email[selIndex].value
 filename1="http://support.rediff.com/cgi-programs/sports/foot04/poll.cgi?email="+selVal;
 var newWin=window.open(filename1,'win1','x=0,y=0,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=350,height=520,screenX=0,screenY=0,left=0,top=0');
 return true;
}
else {
alert("Sorry! You cannot vote more than once.");
return false;
}
}
function popup(f,w,h,s){  var w=window.open(f,'nw','x=0,y=0,toolbar=no,location=no,directories=no,status=no,scrollbars='+s+',copyhistory=no,width='+w+',height='+h+',screenx=0,screeny=0,left=20,top=20');}