<!--
var lastClicked = 0;
function showSlideText(obj,id) {
	var theNodes = document.getElementsByClassName("slide");
	for(i = 0; i < theNodes.length; i++) {
		if(id != theNodes[i].id) {
			Effect.BlindUp(theNodes[i].id);
		}
	}
	var buttonNodes = document.getElementsByClassName("slideButton");
	for(i = 0; i < buttonNodes.length; i++) {
		buttonNodes[i].style.backgroundImage = "url(../images/arrow_right.gif)";
	}
	if(lastClicked == id) {
		Effect.BlindUp(id);
		lastClicked = 0
	} else {
		Effect.BlindDown(id);
		obj.style.backgroundImage = "url(../images/arrow_down.gif)";
		lastClicked = id;
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
-->
