// JavaScript Document
function showMenu(object,Bool){ //object--对象 Bool 是否提交
	var Obj=window.document.getElementById(object);
	if(typeof(Obj)=="object"){
		if(Obj.style.display=='none'){
			Obj.style.display='';
		}else{
			Obj.style.display='none';
		}
		return Bool;
	}else{
		return false;
	}
}