var oldEL;
function mn(obj,id1,id2){
		
	if( document.getElementById(id1).style.display=="none"){
		document.getElementById("mn1").className="aMENU";
		document.getElementById("mn2").className="aMENU";
		stColor=document.getElementById(id1).style.color;
		document.getElementById(id1).style.display="block";
		obj.className="hMENU";
		document.getElementById(id2).style.display="none";

			if(oldEL){
				oldEL.className="aMENU";
			}	
			oldEL=obj;
		}
}

function addBookmark(bTit){
title=bTit;
url="http://"+location.host;
  	if(window.sidebar){ // Firefox
		window.sidebar.addPanel(title, url,'');
  	}else if(window.opera){ //Opera
		return true;
    	//# var a = document.createElement("A");
    	//# a.rel = "sidebar";
    	//# a.target = "_search";
    	//# a.title = title;
    	//# a.href = url;
    	//# a.click();
  	} else if(document.all){ //IE
    	window.external.AddFavorite(url, title);
  	}
}	