			function toggleme(targetId){
				try{
						if (document.getElementById){
						target = document.getElementById(targetId);												
						hideSubMenus(target);
						if (target.style.display == "none" || target.className=='hideit'){
							target.style.display = "inline";
							target.className="showit";
							}
						else if (target.style.display == "inline" || target.style.display == "block" || target.className=='showit' ){
							target.style.display = "none";
							target.className="hideit";
							}
						}
					}
				catch(e){}
				return false;
				}
				function hideSubMenus(excludeTarget){
					if (document.getElementById){
						try{
						totalSubMenus=25;

						for(i=totalSubMenus+1;i > 0; i--){
							var targetAll=document.getElementById("BILmenu_"+i);
							if (excludeTarget!=null){
								if (targetAll!=null && targetAll!=excludeTarget){
										targetAll.style.display = "none";
										targetAll.className="hideit";
									}
								}
							else
								if (targetAll!=null){
										targetAll.style.display = "none";
										targetAll.className="hideit";
									}
							}
						}
						catch(e){}
					}
					return false;
				}