function toggle2( targetId ){
  if (document.getElementById){
    target = document.getElementById( targetId );
    if (target.style.display == ""){
      target.style.display = "block";
    } else {
      target.style.display = "";
    }
  }
}