	function show_menu(nr)
	{
		show_obj("sub_menu_"+nr);
	}
	function hide_menu(nr)
	{
		hide_obj("sub_menu_"+nr);
	}
	function show_obj(obj_id)
	{
		document.getElementById(obj_id).style.display="block";
	}
	function hide_obj(obj_id)
	{
		document.getElementById(obj_id).style.display="none";
	}
	function hover_tr(obj,cla)
	{
		if(cla)
		{
			obj.className=cla;
		}
		else
		{
			obj.style.backgroundColor="#CCCCCC";
		}
	}
	function hout_tr(obj)
	{
		obj.style.backgroundColor="";
		obj.className="";
	}
	function go_to_loc(url)
	{
		document.location=url;
	}
