/**
 *	Switch display property of object with given id between inline and none.
 **/  
function tx_pmbftext_pi1_switchDisplay(id){
    if (document.getElementById(id).style.display == "none"){
      document.getElementById(id).style.display = "inline";
    }else {
      document.getElementById(id).style.display = "none";
    }
 }