//Courtesy of www.free-web-polls.com
/* POPUP WINDOW'S NAME */
var PopUpName = "PopUp"

var counter = 0
var continue_it = 1

/* DISPLAYS THE CURRENT POLL RESULTS. USAGE: 'results(1234,0,500,250)' */
function results(PollID,SubPoll,Width,Height){
decide();
if (continue_it == 1)
	{
		var Left = (screen.width / 2) - (Width / 2)
		var Top = (screen.height / 2) - (Height / 2)
		window.open('http://www.free-web-polls.com/cgi-bin/poll.pl?pollid='+PollID+'&subp='+SubPoll+'&action=view',PopUpName,'width='+Width+',height='+Height+',toolbar=no,scrollbars=no,menubar=no,resizable=no,left='+Left+',top='+Top)
	}
}

/* SENDS VOTE DATA AND DISPLAYS POLL RESULTS. USAGE: 'voting(document.form.which,1234,0,500,250)' */
function voting(FormData,PollID,SubPoll,Width,Height){
decide();
if (continue_it == 1)
	{
		var Left = (screen.width / 2) - (Width / 2)
		var Top = (screen.height / 2) - (Height / 2)

		while(counter < FormData.length){
			if(FormData[counter].checked == true){
				counter++
				var voted = "http://www.free-web-polls.com/cgi-bin/poll.pl?pollid="+PollID+"&subp="+SubPoll+"&action=vote&which="+counter
				window.open(voted,PopUpName,"width="+Width+",height="+Height+",toolbar=no,scrollbars=no,menubar=no,resizable=no,left="+Left+",top="+Top)
			}
			else{
				counter++
			}
		}
		counter = 0
	}
}

function decide(){
//Disable polls if 'free-web-polls' server is down
if (disablepolls == 1)
	{
	alert('We apologize, the polls are currently down. Please check back later.');
	continue_it = 0;
	}
}