<!-- 
function seeResults() {
  popUp = window.open('/cgi-bin/poll/vote.cgi?results=yes','vote','width=450,height=400,resizable=no,scrollbars=no,top=0,left=170,windowX=0,windowY=170');
}
function ConfirmationPopup() {

var voteIndex;
for (voteIndex = 0; voteIndex
< document.myvote.thevote.length; voteIndex++)
{
   if (document.myvote.thevote[voteIndex].checked == true)
   {
	  myVoteNum = voteIndex+1;
      break;
   }
}

  myPopUp = window.open('/cgi-bin/poll/vote.cgi?thevote=' + myVoteNum ,'PU','width=450,height=400,resizable=no,scrollbars=no');
return false;
}
//-->
