function toogleMenu(id)
{
	try{
	obj  = getStatusObject(id);
	if(obj.style["display"] != 'block')
	obj.style["display"] = 'block';
	else
	obj.style["display"] = 'none';
	}catch(Err){}
}
