<!--

function menuToggle(id) {
	tgtRow = document.getElementById(id+'-R');
	tgtCell = document.getElementById(id+'-C');
	tgtImg = document.getElementById(id+'-I');
	if (tgtRow.className == 'menuClose') {
		tgtRow.className = 'menuOpen';
		tgtCell.className = 'menuOpen';
		if (tgtImg != null) {tgtImg.src= 'img/menuExp.gif'; }
		{
		}
	} else if (tgtRow.className == 'menuOpen') {
		tgtRow.className = 'menuClose';
		tgtCell.className = 'menuClose';
		if (tgtImg != null) {tgtImg.src= 'img/menuCon.gif'; }
	}
}
function menuLink(url) {
	document.location = url;  
}
//-->