// JavaScript Document
var d;
var intrs;
var nv;
function ct(){
	clearTimeout(mTmr);
	inMn = true;
}

function sd(d, e){
	clearTimeout(mTmr)
		if(document.getElementById){
			var g = document.getElementById(d);
			if(( document.getElementById(d) ) && (nv!=d) ){
				km();
			}
			document.getElementById(d).style.visibility="visible";
		}
		if(document.all){
			if(document.all[d]){
				var o = document.all[d];
				if((document.all[d])&&(nv!=d)){
					km();
					o.style.zindex = 99999;
				}
				document.all[d].style.visibility="visible";
			}
		}

		nv = d;
}



function km(){
	if(inMn == false){
			if(document.all){
				if(document.all[nv]){
					document.all[nv].style.visibility="hidden";
				}
			}
			if(document.getElementById){
				if(document.getElementById(nv)){
					document.getElementById(nv).style.visibility="hidden";
				}

			}
	}
}



function tm(){
	inMn = false;
	mTmr = setTimeout("km()",400);
}

