
<!--
function popup(theURL,winName,features) { //v2.0
	x =  window.open(theURL,winName,features);
	x.focus()
}

function bookonline() { 
	x =  window.open('https://www.ensemble.com.au/calendar/calendar/booking_default.asp','','status=yes,scrollbars=yes,resizable=yes,width=800,height=600');
	x.focus()
}
function bookonlineDate(date) {
	x =  window.open("https://www.ensemble.com.au/calendar/calendar/booking_default.asp?date=1/"+date+"/2005",'','status=yes,scrollbars=yes,resizable=yes,width=800,height=600');
	x.focus()
}
function bookonlineFullDate (month, year) {
	x =  window.open("https://www.ensemble.com.au/calendar/calendar/booking_default.asp?date=1/"+month+"/"+year,'','status=yes,scrollbars=yes,resizable=yes,width=800,height=600');
	x.focus()
}

function subscribeonline() { 
	x =  window.open('https://www.ensemble.com.au/subs_form1.asp','','status=yes,scrollbars=yes,resizable=yes,width=790,height=460');
	x.focus()
}

function getObj(name) {
	if (document.getElementById) {
		this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
	} else if (document.all) {
		this.obj = document.all[name];
		this.style = document.all[name].style;
	} else if (document.layers) {
		this.obj = document.layers[name];
		this.style = document.layers[name];
	}
}
var current_icon = false;
window.onload = function () {
	// Fix required for Internet Explorer
	if (!document.getElementById) return false;
	if (!document.getElementsByTagName) return false;
	if (current_icon) current_icon.className = '';
	var playlist = document.getElementById("playlist").getElementsByTagName("a");
	for (var i = 0; i < playlist.length; i++) {
		playlist[i].onmouseover = function () {
			if (current_icon) current_icon.className = '';
			this.className = 'over';
			current_icon = this;
		}
		playlist[i].onmouseout = function () {
			if (current_icon) current_icon.className = '';
		}
//					playlist[i].getElementsByTagName('span')[0].onmouseover = function () { this.className = ''; }
	}
}
			
function fixroll(){
	obj = document.getElementById("playlist")
	var out
	for(var a in obj){
		out += a + "   " + obj[a] + "<br>";
	};
	document.write(out);
	window.setTimeout(fixroll,200)
}
//-->
