/*
Catholic Podcast Voteomatic
Copyright (c)2007, John Lamansky

Copying this code for use on other websites is prohibited.
*/

var voteomatic_podcasttitles = new Array();
var voteomatic_podcastpaids = new Array();

voteomatic_podcasttitles[0]="Chant Cast"
voteomatic_podcastpaids[0]="47128"

voteomatic_podcasttitles[1]="The Perseverance Podcast"
voteomatic_podcastpaids[1]="50102"

voteomatic_podcasttitles[2]="Catholic Rockers"
voteomatic_podcastpaids[2]="13574"

voteomatic_podcasttitles[3]="ChristLife: We Have Been Sent"
voteomatic_podcastpaids[3]="31889"

voteomatic_podcasttitles[4]="The Catholic Family Podcast"
voteomatic_podcastpaids[4]="23062"

voteomatic_podcasttitles[5]="Meditations from Carmel"
voteomatic_podcastpaids[5]="28614"

voteomatic_podcasttitles[6]="Life on Fire"
voteomatic_podcastpaids[6]="19076"

voteomatic_podcasttitles[7]="Catholicxjw Podcasts"
voteomatic_podcastpaids[7]="23129"

voteomatic_podcasttitles[8]="Mysteries of the Mass"
voteomatic_podcastpaids[8]="53091"

voteomatic_podcasttitles[9]="The SaintCast"
voteomatic_podcastpaids[9]="22134"

voteomatic_podcasttitles[10]="Going Fourth"
voteomatic_podcastpaids[10]="10185"

voteomatic_podcasttitles[11]="Voice of Mary"
voteomatic_podcastpaids[11]="14628"

voteomatic_podcasttitles[12]="Catholic Geek Podcast"
voteomatic_podcastpaids[12]="35873"

voteomatic_podcasttitles[13]="Christus Vincit ANYWHERE!"
voteomatic_podcastpaids[13]="40085"

voteomatic_podcasttitles[14]="The Children's G.I.F.T. Podcast"
voteomatic_podcastpaids[14]="51909"

voteomatic_podcasttitles[15]="Catholic Spotlight"
voteomatic_podcastpaids[15]="47419"

voteomatic_podcasttitles[16]="catholicunderground.com"
voteomatic_podcastpaids[16]="36728"

voteomatic_podcasttitles[17]="iPadre Catholic Videocast"
voteomatic_podcastpaids[17]="35173"

voteomatic_podcasttitles[18]="iPadre Catholic Podcast"
voteomatic_podcastpaids[18]="9366"

voteomatic_podcasttitles[19]="Bible In A Year"
voteomatic_podcastpaids[19]="2545"

voteomatic_podcasttitles[20]="Arinze - Podcasting with a Vatican Official"
voteomatic_podcastpaids[20]="8535"

voteomatic_podcasttitles[21]="Challenge &amp; Change Podcast"
voteomatic_podcastpaids[21]="14342"

voteomatic_podcasttitles[22]="Weekly Roman Observer Podcast"
voteomatic_podcastpaids[22]="9392"

voteomatic_podcasttitles[23]="Catholic Praise Cast"
voteomatic_podcastpaids[23]="43405"

voteomatic_podcasttitles[24]="Verbum Domini"
voteomatic_podcastpaids[24]="1302"

voteomatic_podcasttitles[25]="Catholic Mormon Podcast"
voteomatic_podcastpaids[25]="3218"

voteomatic_podcasttitles[26]="Divine Mercy Podcast"
voteomatic_podcastpaids[26]="26009"

voteomatic_podcasttitles[27]="St. Anthony's Podcast"
voteomatic_podcastpaids[27]="10352"

voteomatic_podcasttitles[28]="Catholic:Under The Hood"
voteomatic_podcastpaids[28]="10442"

voteomatic_podcasttitles[29]="St. Michaels Pod"
voteomatic_podcastpaids[29]="1749"

voteomatic_podcasttitles[30]="Technopriest"
voteomatic_podcastpaids[30]="4424"

voteomatic_podcasttitles[31]="Tupelo Catholic Show"
voteomatic_podcastpaids[31]="49983"

voteomatic_podcasttitles[32]="The Hands and Feet Show"
voteomatic_podcastpaids[32]="9784"

voteomatic_podcasttitles[33]="Fr. Geek's Video Podcast"
voteomatic_podcastpaids[33]="47449"

voteomatic_podcasttitles[34]="The Manly Catholic Podcast"
voteomatic_podcastpaids[34]="53562"

voteomatic_podcasttitles[35]="The BreadCast"
voteomatic_podcastpaids[35]="3958"


var voteomatic_numpodcasts=36;
var voteomatic_pbperpodcast=100/voteomatic_numpodcasts;
var voteomatic_currentpodcast=0;
var voteomatic_currentpbwidth=0;
var voteomatic_email='';
var voteomatic_timeout;
var voteomatic_complete=false;

function voteomatic_start(email) {
	voteomatic_email=encodeURIComponent(email);
	voteomatic_nextpodcast();
}

function voteomatic_nextpodcast()
{
	//window.frames['voteomatic_voteframe'].location.href = 'vote.php?paid=' + voteomatic_podcastpaids[voteomatic_currentpodcast] + '&email=' + voteomatic_email;
	document.getElementById('voteomatic_voteframe').src = 'vote.php?paid=' + voteomatic_podcastpaids[voteomatic_currentpodcast] + '&email=' + voteomatic_email;
	document.getElementById("voteomatic_statustext").innerHTML = "Voting for " + voteomatic_podcasttitles[voteomatic_currentpodcast] + " (Podcast " + (voteomatic_currentpodcast+1) + " of " + voteomatic_numpodcasts + ")...";
	
	voteomatic_currentpodcast++;
	
	if (voteomatic_currentpodcast > voteomatic_numpodcasts) {
		voteomatic_complete=true;
		document.getElementById("voteomatic_statustext").innerHTML = "Voting Complete! Thank You for Your Support.";
		document.getElementById('voteomatic_working').style.display="none";
		document.getElementById('voteomatic_finished').style.display = "block";
	} else {
		//window.setTimeout("voteomatic_advancepb()", 100);
	}
}

function voteomatic_iframeload(e)
{
	window.clearTimeout(voteomatic_timeout);
	
	if (!voteomatic_complete) {
		voteomatic_timeout = window.setTimeout('voteomatic_nextpodcast()', 3000);
	}
	
	//alert(document.getElementById('voteomatic_voteframe').src);
	/*
	try {
		var href = e.location.href;
	} catch (ex) {
		window.setTimeout('voteomatic_nextpodcast()', 3000);
	}
	*/
}

/*
function voteomatic_advancepb()
{
	if (voteomatic_currentpbwidth <= 100)
	{
		voteomatic_currentpbwidth += (voteomatic_pbperpodcast / 100); //Since this function is called 100 times per podcast
		document.getElementById('voteomatic_progressbar').style.width = voteomatic_currentpbwidth.toString() + "%";
	}
	
	if (voteomatic_currentpbwidth > (voteomatic_pbperpodcast * voteomatic_currentpodcast)) {
		voteomatic_nextpodcast();
	} else {
		window.setTimeout("voteomatic_advancepb()", 100);
	}
}
*/

var voteomaticdigg_loadedbuttons = 0;

function voteomaticdigg_onbuttonload(e,total) {
	/*e.style.visibility='visible';*/
	voteomaticdigg_loadedbuttons++;
	if (voteomaticdigg_loadedbuttons == total) {
		scroll(0,0);
		document.getElementById('coverpage').style.display='none';
	}
}

