var ml3x = 0
var ml3y = 0
var ml3ax = 0
var ml3ay = 0

var thisMenuWidth = 200

var hideLevel3 = false

function menuload() {
	if (document.getElementById("menul3a")) {
		if (mi) {
			ml3ax = (document.all.table01.offsetLeft + 730)
			ml3x = ml3ax - thisMenuWidth
			ml3ay = document.all.table01.offsetTop + 123
			ml3y = ml3ay
			
			if (mac) {
				ml3ay -= 7
				ml3y -= 7
			}
		} else {
			ml3ax = (window.innerWidth/2 + 268)
			if (window.innerWidth < 924)
				ml3ax = 731
			ml3x = ml3ax - thisMenuWidth
			ml3ay = (window.innerHeight/2 - 193)
			if (window.innerHeight < 630)
				ml3ay = 123
			else if (mac)
				ml3ay += 1
			ml3y = ml3ay
		}
		document.getElementById("menul3a").style.left = ml3ax
		document.getElementById("menul3a").style.top = ml3ay
		document.getElementById("menul3").style.left = ml3x
		document.getElementById("menul3").style.top = ml3y
		document.getElementById("menul3a").style.visibility = "visible"
		if (!hideLevel3) {
			document.getElementById("menul3").style.visibility = "visible"
		}
	}
}

var t
function ml3_over() {
	if (hideLevel3) {
		clearTimeout(t)
		document.getElementById("menul3").style.visibility = "visible"
	}
}
function ml3_out() {
	if (hideLevel3) {
		t = setTimeout("ml3_hide()",50)
	}
}
function ml3_hide() {
	if (hideLevel3) {
		document.getElementById("menul3").style.visibility = "hidden"
	}
}
