var tempid = null;
function menuShow(id)
{
 obja = document.getElementById("ma"+id);
 objb = document.getElementById("mb"+id);
 objc = document.getElementById("mc"+id);
 objsm = document.getElementById("sm");
 tempid = id;
  if (obja != null)
    obja.className = "visible";
  if (objb != null)
    objb.className = "menubgvisible";
  if (objc != null)
    objc.className = "visible";
  if (objsm != null)
    objsm.className = "visible";
} // menuShow



try
{
	if (window.top != window)
		window.top.location.replace(location.href);
} // try
catch (e)
{
} // catch
