
var m_time = null;
var m_time2 = null;
var m_width = 100;

function Show_bg() {
	var obj;
	obj = document.getElementById("menu_layer2");
	//obj.innerHTML = "<img src='images/menu_bg.gif' width='"+m_width+"' />";
	obj.style.display = "block";
	m_time2 = null;
}

function Menu(swf, width, top) {
	m_width = width;
	Show();
	HideNow();
	var obj;
	obj = document.getElementById("menu_layer1");
	if (obj.swf!=swf) {
		obj.innerHTML = '<object style="z-index:100;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="200" height="200"><param name="movie" value="swf/'+swf+'"><param name="wmode" value="transparent"><param name="quality" value="high"><embed style="z-index:100;" wmode="transparent" src="swf/'+swf+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="200" height="200"></embed></object>';
		obj2 = document.getElementById("menu_layer2");
		obj2.style.top = top+"px";
		obj.style.top = top+"px";
		obj.style.display = "block";
	}
	obj.swf = swf;
	if (m_time2 != null) {
		clearTimeout(m_time2);
		m_time2 = null;
	}
	m_time2 = setTimeout("Show_bg()",1000);
}

function Show() {
	if (m_time!=null) clearTimeout(m_time);
	m_time = null;
}

function Hide() {
	if (m_time!=null) clearTimeout(m_time);
	m_time = null;
	m_time = setTimeout("HideNow()",500);
}

function HideNow() {
	var obj;
	obj = document.getElementById("menu_layer1");
	obj.style.display = "none";
	obj.swf = null;
	obj = document.getElementById("menu_layer2");
	obj.style.display = "none";
	m_time = null;
	if (m_time2 != null) {
		clearTimeout(m_time2);
		m_time2 = null;
	}
}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1, left = 100,top = 282');");
}
