<!-- Begin
var isNS=(document.layers);
var isIE=(document.all);
var isW3C=(document.getElementById && !isIE);
var menuobj = null;

function iecompattest()
{
  return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
}

function showPopup(e)
{
	if (!isNS && !isIE && !isW3C) return;
	if (isIE)
        {

	  menuobj=document.all.menu;
	  menuobj.style.left=iecompattest().scrollLeft + event.clientX +"px";
	  menuobj.style.top=iecompattest().scrollTop + event.clientY + "px";
	  menuobj.style.visibility="visible";
	}
	else if (isNS)
        {
	  menuobj=document.layers["menu"];
	  menuobj.style.left=window.pageXOffset + e.clientX + "px"
	  menuobj.style.top=window.pageYOffset + e.clientY + "px";
	  menuobj.style.visibility="show";
	}
	else if (isW3C)
        {
	  menuobj=document.getElementById("menu");
	  menuobj.style.left=window.pageXOffset + e.clientX +"px";
	  menuobj.style.top=window.pageYOffset + e.clientY + "px";
	  menuobj.style.visibility="visible";
	}
}

function hidePopup()
{
	if (menuobj == null) return;
	if (isIE || isW3C) menuobj.style.visibility="hidden";
	else if (isNS) menuobj.style.visibility="hide";
}

function movein(which)
{
  which.style.background='coral'
}

function moveout(which)
{
  which.style.background='bisque'
}
// End -->
