var ObjSubMenuPos=window.top.document.getElementById("SubMenuPos");

function ClearAssayMenu(){
	obj=window.top.document.getElementById("BoxMenu");
	obj.style.color="black";
	obj= window.top.document.getElementById(ObjSubMenuPos.innerHTML);
	a=findchild(obj,"#text");
	a.nodeValue="";
	a=findchild(obj,"A");
	a.style.display="inline";
	window.top.document.getElementById("SubMenuPos").innerHTML="";
}

function findchild(obj,tag){
	cn=obj.childNodes;
	for (k=0; k<cn.length; k++){
		if (cn[k].nodeName==tag) return cn[k];
	}
	return false;
}

if (parent.frames.length==0) window.location="../index.html?" + window.location.pathname + "#" + document.getElementById("MenuPos").innerHTML

