// LPC votefunction FormVoteSubmit() {  url="http://www.lovepiececlub.com/vote/vote.php";  title="Vote";  size="resizable=yes, width=330, height=530";  for(i = 0; i < document.frmVote.vote.length; i++){    val = document.frmVote.vote[i].checked;    if (val)  {     url="http://www.lovepiececlub.com/vote/vote.php?vote=" + document.frmVote.vote[i].value;   }  }  voteWin=window.open(url,title,size);  document.frmVote.reset();  voteWin.focus();  }