
/*-----------------------------------------------------*/
/*                                                     */
/* open links in a new window, if they have the        */
/* attribute rel="external_link"                       */
/*                                                     */
/* used to avoid the attribute target"_blank"          */
/* within xhtml strict                                 */
/*                                                     */
function switch_accesskey_pad_display(status) {
    value = status;
    set_cookie("show_accesskey_pad",value);
    location.reload();
}

function show_accesskey_pad_switcher() {
    document.getElementById("accesskey_pad").style.display = "none";
    checked = "";
    cookie_value = read_cookie_value("show_accesskey_pad");
    if(cookie_value == "true") {
        document.getElementById("accesskey_pad").style.display = "block";
        checked = "checked=\"checked\"";
    }
    if(cookie_value == "false") {
        document.getElementById("acc").style.display = "none";
    }
    document.write("<div class=\"acctaste\"><form id=\"accesskey_pad_switcher\" action=\"#\">");
    document.write("<div><label for=\"accesskey_pad_switcher_checkbox\">Tastenmen&uuml;<br /> anzeigen<\/label><input type=\"checkbox\" id=\"accesskey_pad_switcher_checkbox\" value=\"\" onclick=\"switch_accesskey_pad_display(this.checked);\"" + checked + "\/><\/div>");
    document.write("<\/form></div>");
}
function open_external_link() {
    if (!document.getElementsByTagName) return;
    var anchors = document.getElementsByTagName("a");
    for (var i=0; i<anchors.length; i++) {
        var anchor = anchors[i];
        if (anchor.getAttribute("href") &&
            anchor.getAttribute("rel") == "external_link")
        anchor.target = "_blank";
    }
}

/*-----------------------------------------------------*/
/* Fake blurLink */
/*-----------------------------------------------------*/

function blurLink()
{

}

/*-----------------------------------------------------*/
/* Open Links in a popup window */
/*-----------------------------------------------------*/

function popup(url, width, height, myparams) {
	var params = "width=" + width + ",height=" + height + ",";
	if (myparams) {
		params += myparams;
	} else {
		params += "toolbar=no,location=no,directories=no,scrollbars=no,status=no,menubar=no,resizable=no";
	}
	var windowname = "gpdpopup" + Math.floor (Math.random () * 100000);
	var p = window.open (url, windowname, params);
}



/*-----------------------------------------------------*/
/*                                                     */
/* write a value into the search box                   */
/* change the color of the fonts in the search box     */
/*                                                     */
/*-----------------------------------------------------*/

function search_box_text(FeldText,Color) {
    if(document.getElementById) {
        document.getElementById("search_query").value = FeldText;
        document.getElementById("search_query").style.color = Color;
        document.getElementById("search_submit_button").value = "go";
        if(navigator.userAgent.indexOf("KHTML") > -1) {
            document.getElementById("search_submit_button").style.color = "black";
        }
    }
}






function set_cookie(name,value) {
    expire_date = new Date();
    in_one_year = expire_date.getTime() + (365 * 24 * 60 * 60 * 1000);
    expire_date.setTime(in_one_year);
    document.cookie = name + "=" + value + "; expires=" + expire_date.toGMTString() + ";path=/;";
}

function read_cookie_value(cookie_name) {
    if(document.cookie.match(cookie_name)) {
        cookie_name_length = cookie_name.length;
        var cookie_position = document.cookie.indexOf(cookie_name);
        var start_value_reading = cookie_position + cookie_name_length + 1;
        var interim_value = document.cookie.substr(start_value_reading);
        var position_next_separator = interim_value.indexOf(";");

        if(position_next_separator != "-1") {
            var stop_value_reading = position_next_separator;
            var cookie_value = document.cookie.substr(start_value_reading,stop_value_reading);
        } else {
            var cookie_value = document.cookie.substr(start_value_reading);
        }
        return cookie_value;
    }
}
 


function change_body_font(span) {
    font_size = span.substr(5,7);
    new_font_size = font_size.replace("_",".");
    set_cookie("accessibility_font_size",new_font_size);
    location.reload();
}

function show_font_switcher() {
/*document.write("<a  onclick=\"setActiveStyleSheet('075');location.reload();\">klein</a>");
document.write("<a  onclick=\"setActiveStyleSheet('100');location.reload();\">normal</a>");
document.write("<a onclick=\"setActiveStyleSheet('125');location.reload();\">groß</a>");
    document.write("<li><a href=\"javascript:history.go(0)\"  onclick=\"setActiveStyleSheet('text');location.reload();\"onkeypress=\"this.onclick\" title=\"Text (Demo)\">Text (Demo)</a></li>");
  */
    document.write("<div id=\"font_switcher\">");
    document.write("<h4>Ansicht w&auml;hlen:</h4></div>");
    document.write("<div class=\"unterboxfontswitcher\"><ul>");
    document.write("<li><a href=\"javascript:history.go(0)\"  accesskey=\"--\" onclick=\"setActiveStyleSheet('075');location.reload();\" onkeypress=\"this.onclick\" title=\"kleine Schriftgr&ouml;&szlig;e\">klein</a></li>");
    document.write("<li><a href=\"javascript:history.go(0)\" accesskey=\"#\" onclick=\"setActiveStyleSheet('100');location.reload();\" onkeypress=\"this.onclick\" title=\"normale Schriftgr&ouml;&szlig;e\">mittel</a></li>");
    document.write("<li><a href=\"javascript:history.go(0)\" accesskey=\"++\" onclick=\"setActiveStyleSheet('125');location.reload();\"onkeypress=\"this.onclick\" title=\"gro&szlig;e Schriftgr&ouml;&szlig;e\">groß<\a></li>");
  
document.write("</ul></div>");
    

}
function fx_findObj(n, d) { //v4.01
	  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function apply_accessibility_font() {
    cookie_value = read_cookie_value("accessibility_font_size");
    if(cookie_value==1.25)
    fx_findObj("bodyDiv").style.fontSize="1.25em";
   if(cookie_value==1.0)
    fx_findObj("bodyDiv").style.fontSize="1.0em";
   if(cookie_value==0.75)
    fx_findObj("bodyDiv").style.fontSize="0.75em";
}


/*Abbr*/
function abbrStyle() {
     var bodyText_old, bodyText_new, reg
     isIE = (document.all) ? true : false;
     if (isIE) {
         bodyText_old = document.body.innerHTML;
         reg = /<ABBR([^>]*)>([^<]*)<\/ABBR>/g;
         bodyText_new = bodyText_old.replace(reg, '<ABBR $1><SPAN class=\"abbr\" $1>$2</SPAN></ABBR>');
         document.body.innerHTML = bodyText_new;
     }
 }


/*---Check Formulare---------------------------------------------------*/

function chkFormularinfomitglied() {

  if (document.Formular.surename.value == "") {

  	alert("Bitte geben Sie Ihren Nachnamen ein!");

	document.Formular.surename.focus();

	return false;

   }	

   return true;

 }



function chkFormularinfoprivat() {

  if (document.Formular.surename.value == "") {

  	alert("Bitte geben Sie Ihren Nachnamen ein!");

	document.Formular.surename.focus();

	return false;

   }	

   return true;

 }


function chkFormularinfoberufsstarter() {

  if (document.Formular.surename.value == "") {

  	alert("Bitte geben Sie Ihren Nachnamen ein!");

	document.Formular.surename.focus();

	return false;

   }	

   return true;

 }

 
function chkFormularinfofirmen() {

  if (document.Formular.firma.value == "") {

  	alert("Bitte geben Sie ihren Firmennamen ein!");

	document.Formular.firma.focus();

	return false;

   }	

   return true;

 }

function chkFormularkontakt() {

  if (document.Formular.surename.value == "") {

  	alert("Bitte geben Sie ihren Nachnamen ein. Danke.");

	document.Formular.surename.focus();

	return false;

   }

  if (document.Formular.message.value == "") {

  	alert("Bitte formulieren Sie Ihre Anfrage. Danke.");

	document.Formular.message.focus();

	return false;

   }	

   return true;

 }


function chkFormularwerbung() {

   
  if (document.Formular.firstname.value == "") {

  	alert("Bitte tragen Sie den Vornamen des Interessenten ein!");

	document.Formular.firstname.focus();

	return false;

   }	

if (document.Formular.surename.value == "") {

  	alert("Bitte tragen Sie den Namen des Interessenten ein!");

	document.Formular.surename.focus();

	return false;

   }
if (document.Formular.street.value == "") {

  	alert("Bitte tragen Sie die Straße des Interessenten ein!");

	document.Formular.street.focus();

	return false;

   }
if (document.Formular.plz.value == "") {

  	alert("Bitte tragen Sie die PLZ des Interessenten ein!");

	document.Formular.plz.focus();

	return false;

   }
if (document.Formular.ort.value == "") {

  	alert("Bitte tragen Sie den Ort des Interessenten ein!");

	document.Formular.ort.focus();

	return false;

   }
if (document.Formular.geburt.value == "") {

  	alert("Bitte tragen Sie das Geburtsdatum des Interessenten ein!");

	document.Formular.geburt.focus();

	return false;

   }
if (document.Formular.myfirstname.value == "") {

  	alert("Bitte tragen Sie Ihren Vornamen ein!");

	document.Formular.myfirstname.focus();

	return false;

   }

if (document.Formular.mysurename.value == "") {

  	alert("Bitte tragen Sie Ihren Nachnmen ein!");

	document.Formular.mysurename.focus();

	return false;

   }
if (document.Formular.mygeburt.value == "") {

  	alert("Bitte tragen Sie Ihr Geburtsdatum ein!");

	document.Formular.mygeburt.focus();

	return false;

   }
if (document.Formular.mykrankenversicherungsnummer.value == "") {

  	alert("Bitte tragen Sie Ihre Krankenversicherungsnummer ein!");

	document.Formular.mykrankenversicherungsnummer.focus();

	return false;

   }  
if (document.Formular.mykontonummer.value == "") {

  	alert("Bitte tragen Sie Ihre Kontonummer ein!");

	document.Formular.mykontonummer.focus();

	return false;

   }
if (document.Formular.mybankleitzahl.value == "") {

  	alert("Bitte tragen Sie Ihre Bankleitzahl ein!");

	document.Formular.mybankleitzahl.focus();

	return false;

   }
if (document.Formular.mykreditinstitut.value == "") {

  	alert("Bitte tragen Sie Ihr Kreditinstitut ein!");

	document.Formular.mykreditinstitut.focus();

	return false;

   }
if (document.Formular.mykontoinhaber.value == "") {

  	alert("Bitte tragen Sie den Kontoinhaber ein!");

	document.Formular.mykontoinhaber.focus();

	return false;

   }


   return true;

 }







function Round1 (r) {
   r = Math.round(r*100)/100;
   ret = Math.floor(r);
   nachkomma = Math.round( (r - ret) * 100 );
   if (nachkomma < 10) {
     nachkomma = "0" + nachkomma;
   }
   return ret + "." + nachkomma;
}
 
function compute(obj) 
  { 
  var proz=12.9;
  if (obj.brutto.value > 3600.00) 
  	{
	obj.brutto.value = 3600.00
	}
  obj.erg.value = Round1(obj.brutto.value/100 * obj.bei.value)
   obj.bei.value = Round1(obj.bei.value)
   obj.dh.value = Round1(obj.erg.value/2)
   obj.bkk.value = Round1(obj.brutto.value/100*proz)
   obj.bkk1.value = Round1(obj.bkk.value/2)
   obj.sp.value = Round1(obj.dh.value - obj.bkk1.value)
   obj.spj.value = Round1(obj.sp.value*12)
   }

function Form1_Validator()
{
  var o=document.getElementById("Form1");
  myTest = o.brutto.value;
 var myRegEx = new RegExp ("^[0-9]+$");if (myTest.match(myRegEx))
  {
    compute(o);
  }
  else
  {
    alert("Bitte geben Sie nur Ziffern in das Feld \"Bruttogehalt\" ein.");
    o.brutto.focus();
    return (false);
  }
  return (true);
}


function show_beitragsrechner() {
document.write("<form name=\"Form1\"  id=\"Form1\" method=\"post\" >");
document.write("<fieldset><legend>Beitragsrechner</legend><div class=\"fieldset\"><br />");
document.write("Bitte tragen Sie hier Ihr Gehalt ein und wählen Ihren bisherigen Beitrag aus:<br /><br />");
document.write("<label class=\"leftbreit\" for=\"bruttogehalt\">Bruttogehalt (monatlich):</label> ");
document.write("<input id=\"brutto\" name=\"brutto\" class=\"rightdrei\" title=\"Bitte tragen Sie hier Ihr monatliches Bruttogehalt ein.\"/> Euro<br/><br/> ");
document.write("<label class=\"leftbreit\" for=\"bisher\">Ihr bisheriger Beitrag:</label> ");
document.write("<select id=\"bisher\"  name=\"bei\" class=\"right\" title=\"Bitte tragen Sie hier Ihren bisherigen Beitrag ein.\" <option value=\"12.90\">12,9</option><option value=\"13.00\">13,0</option><option value=\"13.10\">13,1</option><option value=\"13.20\">13,2</option><option selected value=\"13.30\">13.3</option><option value=\"13.40\">13,4</option><option value=\"13.50\">13,5</option><option value=\"13.60\">13,6</option><option value=\"13.70\">13,7</option><option value=\"13.80\">13,8</option><option value=\"13.90\">13,9</option><option value=\"14.00\">14,0</option><option value=\"14.10\">14,1</option><option value=\"14.20\">14,2</option><option value=\"14.30\">14,3</option><option value=\"14.40\">14,4</option><option value=\"14.50\">14,5</option><option value=\"14.60\">14,6</option><option value=\"14.70\">14,7</option><option value=\"14.80\">14,8</option><option value=\"14.90\">14,9</option><option value=\"15.00\">15,0</option><option value=\"15.10\">15,1</option><option value=\"15.20\">15,2</option></select> %<br/><br/>");
document.write("<input name=\"button\" type=\"button\" class=\"formularbutton\" onClick=\"Form1_Validator(this.form)\" value=\"Auswertung starten\"> <br/><br/>");
document.write("<strong>Ergebnis:</strong><br /><br />");
document.write("Monatsbeitrag Gesamt:<br /><br />");
document.write("<label class=\"leftbreit\" for=\"gesamt\">Bisherige Krankenkasse:</label> ");
document.write("<input id=\"gesamt\" name=\"erg\" type=\"text\" class=\"rightrot\" title=\"Monatsbeitrag Gesamt bei Ihrer bisherigen Krankenkasse\"/> Euro <br/><br/>");
document.write("<label class=\"leftbreit\" for=\"gesamtbkk\">Unser Beitrag:</label> ");
document.write("<input id=\"gesamtbkk\" name=\"bkk\" type=\"text\" class=\"rightgruen\" title=\"Monatsbeitrag Gesamt bei der BKK Bergisch Land\"/> Euro <br/><br/>");
document.write("Ihr Anteil als Arbeitnehmer:<br /><br />");
document.write("<label class=\"leftbreit\" for=\"gesamtanteil\">Bisherige Krankenkasse:</label> ");
document.write("<input id=\"gesamtanteil\" name=\"dh\" type=\"text\" class=\"rightrot\" title=\"Arbeitnehmeranteil bei Ihrer bisherigen Krankenkasse.\"/> Euro <br/><br/>");
document.write("<label class=\"leftbreit\" for=\"gesamtbkkanteil\">Bei uns:</label> ");
document.write("<input id=\"gesamtbkkanteil\" name=\"bkk1\" type=\"text\" class=\"rightgruen\" title=\"Arbeitnehmeranteil bei der BKK Bergisch Land.\"/> Euro <br/><br/>");
document.write("Ergebnis: <br /><br />");
document.write("<label class=\"leftbreit\" for=\"sparenmonat\">Sie sparen im Monat:</label> ");
document.write("<input id=\"sparenmonat\" name=\"sp\" type=\"text\" class=\"rightrot\" title=\"Sie sparen im Monat:\"/> Euro <br/><br/>");
document.write("<label class=\"leftbreit\" for=\"sparenjahr\">Sie sparen im Jahr:</label> ");
document.write("<input id=\"sparenjahr\" name=\"spj\" type=\"text\" class=\"rightgruen\" title=\"Sie sparen im Jahr:\"/> Euro <br/><br/>");
document.write("<strong>Hinweise:</strong><br /><br />");
document.write("<span>Der Berechnung der jährlichen Ersparnis liegen 12 Monatsgehälter zugrunde. Die Ersparnis kann sich daher z.B. bei mehr als 12 Gehältern pro Jahr noch erhöhen. <br/>Der Arbeitgeber spart in gleicher Höhe bei seinem Anteil bzw. Beitragszuschuss (zu Ihrem freiwilligen Beitrag).<br/> Zu dem ermittelten Betrag wird bei allen gesetzlichen Krankenkassen ein vom Gesetzgeber vorgeschriebener Zusatzbeitrag in Höhe von 0,9% erhoben, der rein durch den Versicherten (ohne Beteiligung des Arbeitgebers) zu tragen ist.</span><br/><br/>");
document.write("<div class=\"clearboth\"></div> ");
document.write("</div></fieldset> ");
document.write("<br/><br/>");
document.write("</form>");
}




function show_seitedrucken() {
    document.write("<IMG alt=\"Druckersymbol\" src=\"fileadmin/templates/images/printgif.gif\" class=\"hspacef\"><a href=\"javascript:window.print();\"   title=\"Diese Seite drucken\">Seite drucken</A>");
}


function show_beitragsrechner138() {
document.write("<form name=\"Form1\"  id=\"Form1\" method=\"post\" >");
document.write("<fieldset><legend>Beitragsrechner</legend><div class=\"fieldset\"><br />");
document.write("Bitte tragen Sie hier Ihr Gehalt ein und wählen Ihren bisherigen Beitrag aus:<br /><br />");
document.write("<label class=\"leftbreit\" for=\"bruttogehalt\">Bruttogehalt (monatlich):</label> ");
document.write("<input id=\"brutto\" name=\"brutto\" class=\"rightdrei\" title=\"Bitte tragen Sie hier Ihr monatliches Bruttogehalt ein.\"/> Euro<br/><br/> ");
document.write("<label class=\"leftbreit\" for=\"bisher\">Ihr bisheriger Beitrag:</label> ");
document.write("<select id=\"bisher\"  name=\"bei\" class=\"right\" title=\"Bitte tragen Sie hier Ihren bisherigen Beitrag ein.\" <option value=\"13.90\">13,9</option><option value=\"14.00\">14,0</option><option value=\"14.10\">14,1</option><option value=\"14.20\">14,2</option><option value=\"14.30\">14,3</option><option value=\"14.40\">14,4</option><option value=\"14.50\">14,5</option><option selected value=\"14.60\">14,6</option><option value=\"14.70\">14,7</option><option value=\"14.80\">14,8</option><option value=\"14.90\">14,9</option><option value=\"15.00\">15,0</option><option value=\"15.10\">15,1</option><option value=\"15.20\">15,2</option></select> %<br/><br/>");
document.write("<input name=\"button\" type=\"button\" class=\"formularbutton\" onClick=\"Form2_Validator(this.form)\" value=\"Auswertung starten\"> <br/><br/>");
document.write("<strong>Ergebnis:</strong><br /><br />");
document.write("Monatsbeitrag Gesamt:<br /><br />");
document.write("<label class=\"leftbreit\" for=\"gesamt\">Bisherige Krankenkasse:</label> ");
document.write("<input id=\"gesamt\" name=\"erg\" type=\"text\" class=\"rightrot\" title=\"Monatsbeitrag Gesamt bei Ihrer bisherigen Krankenkasse\"/> Euro <br/><br/>");
document.write("<label class=\"leftbreit\" for=\"gesamtbkk\">Unser Beitrag:</label> ");
document.write("<input id=\"gesamtbkk\" name=\"bkk\" type=\"text\" class=\"rightgruen\" title=\"Monatsbeitrag Gesamt bei der BKK Bergisch Land\"/> Euro <br/><br/>");
document.write("Ihr Anteil als Arbeitnehmer:<br /><br />");
document.write("<label class=\"leftbreit\" for=\"gesamtanteil\">Bisherige Krankenkasse:</label> ");
document.write("<input id=\"gesamtanteil\" name=\"dh\" type=\"text\" class=\"rightrot\" title=\"Arbeitnehmeranteil bei Ihrer bisherigen Krankenkasse.\"/> Euro <br/><br/>");
document.write("<label class=\"leftbreit\" for=\"gesamtbkkanteil\">Bei uns:</label> ");
document.write("<input id=\"gesamtbkkanteil\" name=\"bkk1\" type=\"text\" class=\"rightgruen\" title=\"Arbeitnehmeranteil bei der BKK Bergisch Land.\"/> Euro <br/><br/>");
document.write("Ergebnis: <br /><br />");
document.write("<label class=\"leftbreit\" for=\"sparenmonat\">Sie sparen im Monat:</label> ");
document.write("<input id=\"sparenmonat\" name=\"sp\" type=\"text\" class=\"rightrot\" title=\"Sie sparen im Monat:\"/> Euro <br/><br/>");
document.write("<label class=\"leftbreit\" for=\"sparenjahr\">Sie sparen im Jahr:</label> ");
document.write("<input id=\"sparenjahr\" name=\"spj\" type=\"text\" class=\"rightgruen\" title=\"Sie sparen im Jahr:\"/> Euro <br/><br/>");
document.write("<strong>Hinweise:</strong><br /><br />");
document.write("<span>Der Berechnung der jährlichen Ersparnis liegen 12 Monatsgehälter zugrunde. Die Ersparnis kann sich daher z.B. bei mehr als 12 Gehältern pro Jahr noch erhöhen. <br/>Der Arbeitgeber spart in gleicher Höhe bei seinem Anteil bzw. Beitragszuschuss (zu Ihrem freiwilligen Beitrag).<br/> Zu dem ermittelten Betrag wird bei allen gesetzlichen Krankenkassen ein vom Gesetzgeber vorgeschriebener Zusatzbeitrag in Höhe von 0,9% erhoben, der rein durch den Versicherten (ohne Beteiligung des Arbeitgebers) zu tragen ist.</span><br/><br/>");
document.write("<div class=\"clearboth\"></div> ");
document.write("</div></fieldset> ");
document.write("<br/><br/>");
document.write("</form>");
}

function computesr(obj) 
  { 
  var proz=13.8;
  if (obj.brutto.value > 3600.00) 
  	{
	obj.brutto.value = 3600.00 
	}
  obj.erg.value = Round1(obj.brutto.value/100 * obj.bei.value)
   obj.bei.value = Round1(obj.bei.value)
   obj.dh.value = Round1(obj.erg.value/2)
   obj.bkk.value = Round1(obj.brutto.value/100*proz)
   obj.bkk1.value = Round1(obj.bkk.value/2)
   obj.sp.value = Round1(obj.dh.value - obj.bkk1.value)
   obj.spj.value = Round1(obj.sp.value*12)
   }

function Form2_Validator()
{
  var o=document.getElementById("Form1");
  myTest = o.brutto.value;
 var myRegEx = new RegExp ("^[0-9]+$");if (myTest.match(myRegEx))
  {
    computesr(o);
  }
  else
  {
    alert("Bitte geben Sie nur Ziffern in das Feld \"Bruttogehalt\" ein.");
    o.brutto.focus();
    return (false);
  }
  return (true);
}






function show_aufeinenklick() {
document.write("<div id=\"LeftPromoBox\"><h4>Auf einen Klick</h4>");
document.write("<div class=\"unterboxklick\">");
document.write("<form class=\"formSuche\">");
document.write("<select onchange=\"location.href=this.value\">");
document.write("<option value=\"\">bitte w&auml;hlen ...</option>");
document.write("<option value=\"kontakt/kontakt/filialen.html\">Adressen</option>");
document.write("<option value=\"privatkunden/ansprechpartner.html?L=0\">Ansprechpartner</option>");
document.write("<option value=\"?id=15\">Bonusprogramm</option>");
document.write("<option value=\"startseite/online-service/dokumente-downloads.html\">Downloads</option>");
document.write("<option value=\"http://www.beranet.de/verband/module/die-bergische-kk\" target=\"_blank \">Expertenchats</option>");
document.write("<option value=\"startseite/leistungen/kurse.html?L=0\">Gesundheitskurse</option>");
document.write("<option value=\"privatkunden/uebersicht/kundenmagazin.html\">Kundenmagazin</option>");
document.write("<option value=\"newsletter.html?no_cache=1\">Newsletter</option>");
document.write("<option value=\"ueber-uns/wir-ueber-uns/stellenangebote.html\">Stellenangebote</option>");
document.write("<option value=\"startseite/online-service/webcenter-login.html?L=0\">Webcenter</option>");
document.write("</select></form></div></div><br />");
}


