<!-- variabel definitioner-->
  var isnav, isie
  var coll= ""
  var styleobj = ""
  var timerid, globalstep=0
  if (parseInt(navigator.appVersion)>=4) 	<!--Bestemmelse af browsertype-->

    if (navigator.appName=="Microsoft Internet Explorer")		<!--Internet Explorer-->
    {
	  isie=true
      coll="all."
      styleobj = ".style"
	}
    else 			<!--Netscape-->						
	{	
      isnav=true
    } 

function clickHandler(obj) 
{
	var targetId, targetElement;
	targetId = obj.id + "d";
	  
 	targetElement = document.getElementById(targetId); 
  
	 	if (targetElement.style.display == "none") <!-- Div tag was hidden, now show it -->
	 	{
	 	    targetElement.style.display = "";
			 obj.style.fontWeight="bold";
			 obj.style.color= "#D800FF"; 
	 	} 
	 	else <!-- Div tag was visible, now hide it -->
	 	{
	 	    targetElement.style.display = "none";
			targetElement.style.fontWeight = "normal";
			obj.style.fontWeight="normal";
			obj.style.color= "#D800FF"; 
		}
}

