<!--
function clickHandler(el) {
 var targetId, srcElement, targetElement;
 srcElement = (el == null)?window.event.srcElement:el;
 if (srcElement.className == "Outline"){
  targetId = srcElement.getAttribute('id') + "details";
  targetElement = document.getElementById(targetId);
  if (targetElement.style.display == "none") {	targetElement.style.display = "" }
  else { targetElement.style.display = "none" }
 };
};

function init(){
	var host=new RegExp(window.location.protocol+"\\/\\/"+window.location.hostname,"i");
//	var path=String(window.location.pathname).replace(/(\d+)\.htm(l)?/,"");
	var path=String(window.location).replace(host,'');
	var LeftMenu=document.getElementById("submenu");
	var a=LeftMenu.getElementsByTagName("a");
	var i=-1;
	do{i++}while(a[i]&&a[i].getAttribute("href").replace(host,'')!=path&&i<a.length );
	if(a[i]){
		a=a[i];
		if(/details/i.test(a.parentNode.getAttribute('id'))){a.style.textDecoration="underline"};
		clickHandler(document.getElementById(a.parentNode.getAttribute('id').replace(/details/i,'')));
	};
};

window.onload=init;
//-->

