function over(id, color, menu) {
	if (id == "") {return false;}
	//if (menu == "mn") {document.all(id).style.backgroundImage = "url(_/menu/select.gif)";}
	//if (menu == "bt") {document.all(id).style.backgroundImage = "url(_/menu/button_y.gif)";}
	if (color != "") {
	document.all(id).style.backgroundColor = '#'+color;
	}
	if (menu != "no") {
		document.all(id).style.cursor = 'pointer';
	}
}
function out(id, color, menu) {
	if (id == "") {return false;}
	//if (menu == "mn") {document.all(id).style.backgroundImage = "url(_/menu/bg.gif)";}
	//if (menu == "bt") {document.all(id).style.backgroundImage = "url(_/menu/button.gif)";}
	if (color != "") {
		document.all(id).style.backgroundColor = '';
		}
	if (menu != "no") {
		document.all(id).style.cursor = '';
	}
}
