/*
通过单击事件，显示id为参数“a”的对象
*/
function showMenu(a)
{
  var t=document.getElementById(a);
  try{
    if(t.style.display=="")
	t.style.display="none";
    else
	t.style.display="";
    }
  catch(e){
	alert("This [object] is null");
 }
}
