<!--
defaultStatus = "International Schools Theatre Association";

function swap_pic(id, state) {
	if (document.images) {
		if ((state == 'on')) {
			image_item = document.getElementById(id);
			image_item.style.backgroundImage = 'url(images/sections/' + id.substring(0,id.length-2) + '_item.gif)';
		}
		if ((state == 'off')) {
			image_item = document.getElementById(id);
			image_item.style.backgroundImage = '';
		}
	}
}

function jsPopUp(name,id,id2,attr3) {
	windowName =  name;
	windowLeft = 100;
	windowTop=100;
	switch (windowName) {
		case 'link':	// link
			windowWidth = 450;
			windowHeight = 500;
			windowScrollbars = 1;
			windowURL = id;
			windowName = attr3;
			break;
	}
	windowProps = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + windowScrollbars + ",resizable=1,copyhistory=0,width=" + windowWidth + ",height=" + windowHeight + ",left=" + windowLeft + ",top=" + windowTop;
	window.open(windowURL,windowName,windowProps);				
}
//-->