var siteURL = "juju";
var templateURL = "juju";

var player_off = new Image();
var player_on = new Image();

var poll_off = new Image();
var poll_on = new Image();

function init(url, template_url) {
	siteURL = url;
	templateURL = template_url;
	
	player_off.src = templateURL + "/images/player-off.gif";
	player_on.src = templateURL + "/images/player-on.gif";

	poll_off.src = templateURL + "/images/poll-off.gif";
	poll_on.src = templateURL + "/images/poll-on.gif";

}

function img_on(imgName) {
	document[imgName].src = eval(imgName + "_on.src");
}

function img_off(imgName) {
	document[imgName].src = eval(imgName + "_off.src");
}

function launchPlayer(year) {
	url = templateURL + "/in-d-player-" + year + ".html";
	window.open(url, "indplayer", "status=yes,toolbar=no,location=no,resizable=no,scrollbars=no,height=330,width=430");
}

function launchPoll(year) {
	url = siteURL + "/poll-" + year;
	window.open(url, "indpoll", "status=yes,toolbar=no,location=no,resizable=yes,scrollbars=yes,height=600,width=400");
}

//no errors before the applet is done loading                    
window.onerror=null;

