function se_mouseover(whoid, controlsid) {
	var who = document.getElementById(whoid);
	if (who.className == 'se_over') {
		return;
	}
	who.oldClassName = who.className;
	who.className = 'se_over';

	controls = document.getElementById(controlsid);
	if (controls) { controls.style.display = 'block'; }
}

function se_mouseout(whoid, controlsid) {
	var who = document.getElementById(whoid);
	who.className = who.oldClassName;
	controls = document.getElementById(controlsid);
	if (controls) { controls.style.display = 'none'; }

//	setTimeout("se_closecontrols('" + whoid + "', '" + controlsid + "')", 50);
}

//function se_closecontrols(whoid, controlsid) {
//	var who = document.getElementById(whoid);
//	if (who.className == 'se_over') {
//		return;
//	}
//
//	controls = document.getElementById(controlsid);
//	if (controls) {
//		controls.style.display = 'none';
//	}
//}