  function VoteResults(ID)
  {
    window.open("/votearchive.php?q="+ID,"voteresults","width=640,height=400,top=100,left=100,scrollbars=1");
  }

  function Voting(id)
  {
    i=0;
    while(document.formvoting.elements[i])
    {
      if(document.formvoting.elements[i].name=='vote')
      if(document.formvoting.elements[i].checked)
      {
        window.open("/votearchive.php?q="+id+"&v="+document.formvoting.elements[i].value,"votewindow","width=300,height=160,top=100,left=100");
        return;
      }
      i++;
    }
  }
