
var MenuTimer;
function ShowMenu(obj) {obj.style.visibility='visible';}
function HideMenu(obj) { MenuTimer = setTimeout(obj.id + '.style.visibility="hidden"', 200);}
function StopMenuHide() {clearTimeout(MenuTimer);}
function OpenLink( obj ){
	var linkarray = obj.getElementsByTagName("A");
	if (linkarray.length >= 1){	document.location.href = linkarray[0].href;	}
}
function SetTDColor( td, ColorBack, ColorFore ){
    td.bgColor=ColorBack;
    var linkarray = td.getElementsByTagName("FONT");
    
	if (linkarray.length >= 1){linkarray[0].color=ColorFore;	}
}
function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}