function mnSHOW(mn){
	if(document.getElementById(mn).style.display=="block"){
		document.getElementById(mn).style.display="none";
	}else{
		document.getElementById(mn).style.display="block";
}	}

function addFavorite(){
	if(navigator.appName=="Microsoft Internet Explorer") window.external.AddFavorite(this.location.href,document.title);
}
function setStartPage(o){
	if(navigator.appName=="Microsoft Internet Explorer") o.setHomePage(this.location.href);
}