function toggle( targetId, callerId ){
	

  if (document.getElementById){
	
        target = document.getElementById( targetId );
           if (target.style.display == "none"){
              target.style.display = "block";
              callerId.className = "liston";

	} else {
              callerId.className = "listoff";
              target.style.display = "none";

           }
     }
} 

