<!--
function turnBlack(menuLink) {
	document.getElementById(menuLink).style.color = '#000000';
}
function turnWhite(menuLink) {
	document.getElementById(menuLink).style.color = '#FFFFFF';
}
function turnRed(menuLink) {
	document.getElementById(menuLink).style.color = '#CC0033';
}
function turnOn(imgSwap) {
	document.getElementById(imgSwap).src = 'images/img'+imgSwap+'_On.jpg';
}
function turnOff(imgSwap) {
	document.getElementById(imgSwap).src = 'images/img'+imgSwap+'_Off.jpg';
}
function popUp(url, width, height){
	var popWin = window.open(url, "window2", "width="+width+",height="+height+",toolbar=no,directories=no,location=no,resizable=yes,dependent=no,scrollbars=yes");
	popWin.creator = self ;
	popWin.focus();	
	if (popWin.opener == null) {
		popWin.opener = window;
	}
}
//-->