var last_smid = 0;

function mb_mouseover(id, sid) {
	if (last_smid != 0) {
		document.getElementById(last_smid).style.display = "none";
	}
	document.getElementById(id).style.backgroundColor = "#00D600";
	document.getElementById(sid).style.display = "block";
	last_smid = sid;
	return true;
}

function mb_mouseout(id) {
	document.getElementById(id).style.backgroundColor = "transparent";
	return true;
}

function smb1_mouseover(id) {
	//alert("smb1_mouseover: "+id);
	document.getElementById(id).style.backgroundColor = "#00D600";
	return true;
}

function smb1_mouseout(id) {
	document.getElementById(id).style.backgroundColor = "#FFFFFF";
	return true;
}

function smb1_onclick(id, url) {
	//alert(id);
	document.getElementById(id).style.display = "none";
	if (url) {
		location.href=url;
	}
	return true;
}
function sr_mouseover(id) {
	document.getElementById(id).style.backgroundColor = "#00D600";
	return true;
}
function sr_mouseout(id) {
	document.getElementById(id).style.backgroundColor = "#FFFFFF";
	return true;
}
function sr_onclick(url) {
	if (url) {
		location.href=url;
	}
	return true;
}