function dropDown(id){
	var almenu=document.getElementById(id);
	if (almenu!==null) {
		almenu.className= (almenu.className=="btn_menu_hide") ? 'dropdown' :'btn_menu_hide';
	}
}

function closeAllDropdowns(){
	var menu=document.getElementById("almenu_ul");
	for(var i=0;i<menu.childNodes.length;i++) {
		var child=menu.childNodes[i];
		if(child.className=="dropdown"){
			dropDown(child.id);
		}
	}
}

function closeOtherDropdowns(id){
	var menu=document.getElementById("qm0");
	for(var i=0;i<menu.childNodes.length;i++) {
		var child=menu.childNodes[i];
		if(child.className=="dropdown" && child.id!=id){
			dropDown(child.id);
		}
	}
}

function openMenu(id,unique){
	if(unique==null){
		closeOtherDropdowns(id);
	}
	dropDown(id);
}

function setClassById(id,classname){
	var cell=document.getElementById(id);
	cell.className=classname;
	return true;
}