function showMenu(arg) {
	///////////////////////////
	autoClose = true;
	///////////////////////////
	if (autoClose) {
		b = document.getElementsByTagName("div").length;
		for (i=0; i<=b-1; i++) {
			//alert(document.getElementsByTagName("div")[i].className);
			if (document.getElementsByTagName("div")[i].className == "item")
				document.getElementsByTagName("div")[i].style.display = "none";
		}
	}
	///////////////////////////
	p = arg.parentNode; c = p.getElementsByTagName("div")[0]; a = c.style;
	a.display == "none" ? a.display = "block" : a.display = "none";
	///////////////////////////
}



function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
