function change_salutation_values() {
    var mitmach = document.getElementById("tx_a21mitmachaktion_protest_results-salutation").value;
   switch(mitmach) {
        case "1":
        document.getElementById("tx_a21mitmachaktion_protest_results-addition").previousSibling.previousSibling.innerHTML = "Firmenname";
        document.getElementById("tx_a21mitmachaktion_protest_results-lastname").previousSibling.previousSibling.innerHTML = "Ansprechpartner";
        document.getElementById("tx_a21mitmachaktion_protest_results-firstname").previousSibling.previousSibling.style.display = "none";
        document.getElementById("tx_a21mitmachaktion_protest_results-firstname_hr").style.display = "none"; 
       break;
        default:
        document.getElementById("tx_a21mitmachaktion_protest_results-addition").previousSibling.previousSibling.innerHTML = "Zusatz";
        document.getElementById("tx_a21mitmachaktion_protest_results-firstname").previousSibling.previousSibling.innerHTML = "Vorname";
        document.getElementById("tx_a21mitmachaktion_protest_results-lastname").previousSibling.previousSibling.innerHTML = "Nachname";
	document.getElementById("tx_a21mitmachaktion_protest_results-firstname").previousSibling.previousSibling.style.display = "inline";
        document.getElementById("tx_a21mitmachaktion_protest_results-firstname_hr").style.display = "inline";
	break;
    }
 }
 
 function display_sub_navigation() {
     var help_text = "Der rechte Inhaltsbereich wurde aus Platzgr&uuml;nden ausgeblendet.<br />Dies ist <strong>kein</strong> Darstellungsfehler!";
     var breite = window.innerWidth;
     var ie_breite = document.body.offsetWidth;
//		if(breite > 960 || ie_breite > 940) {
             document.getElementById("content_slot_01").style.marginRight = "211px";
             document.getElementById("footer").style.marginRight = "231px";
             document.getElementById("content_slot_01").style.borderLeftColor = "#c5e5c3";
             document.getElementById("java_script_help").style.display = "none";
             document.getElementById("content_slot_02").style.display = "block";
             document.getElementById("search").style.display = "block";
/*
          } else {
             document.getElementById("content_slot_01").style.marginRight = "0px";
             document.getElementById("footer").style.marginRight = "0px";
             document.getElementById("content_slot_01").style.borderLeftColor = "white";
             document.getElementById("content_slot_02").style.display = "none";
             document.getElementById("search").style.display = "none";
             document.getElementById("java_script_help").innerHTML = help_text;
             document.getElementById("java_script_help").style.display = "block";
             document.getElementById("java_script_help").style.border = "1px solid #ff6600";
             document.getElementById("java_script_help").style.padding = "8px";
             document.getElementById("java_script_help").style.marginBottom = "1em";
         }
*/
}
