<!--
  function jsFuncShow(objectName) {
    object = document.getElementById(objectName);
    object.style.display='inline';
  }
  function jsFuncBlock(objectName) {
    object = document.getElementById(objectName);
    object.style.display='block';
  }
  function jsFuncHide(objectName) {
    object = document.getElementById(objectName);
    object.style.display='none';
  }
  function trim(str) {
    return str.replace(/^\s*|\s*$/g,"");
  }
  function jsMail(domain, user) {
    document.location.href = 'mailto:' + user + '@' + domain;
  }
  function loadImage(bildAdress,bildText,bildPosition,bildBredd,bildLank) {
    if (!bildPosition) { bildPosition = "center" }
    if (bildPosition == "right") {
      bildMarginaler = "margin: 0px 0px 10px 5px;"
    }
    else if (bildPosition == "left") {
      bildMarginaler = "margin: 0px 5px 10px 0px;"
    }
    else if (bildPosition == "center") {
      bildMarginaler = "margin: 0px 0px 10px 0px; "
    }
    if (bildBredd) { tabellBredd = (bildBredd + "px"); }
    else { bildBredd = "120px"; tabellBredd = "120px"; }

    if (bildLank) {
      bildLank1 = '<a href="' + bildLank + '" class=\"imageLink\">';
      bildLank2 = '</a>';
    }
    else {
      bildLank1 = "";
      bildLank2 = "";
    }
    if (bildAdress) {
      if (bildPosition == "center") {
        document.write('<center>\n');
      }
      document.write('<table border=0 cellspacing=0 cellpadding=0 width=' + tabellBredd + ' align=' + bildPosition + ' style="border: 2px solid black; ' + bildMarginaler + '">\n');
      document.write('  <tr>\n');
      document.write('    <td style="padding: 0px; background-color: black;">' + bildLank1 + '<img src="' + bildAdress + '" style="width: ' + bildBredd + 'px; border: 0px;">' + bildLank2 + '</td>\n');
      document.write('  </tr>\n');
      if (bildText) {
        document.write('  <tr>\n');
        document.write('    <td style="padding: 2px; background-color: black; text-align: center; color: white; font-size: 10px;">' + bildLank1  + bildText + bildLank2 + '\n');
        document.write('    </td>\n');
        document.write('  </tr>\n');
      }
      document.write('</table>\n');
      if (bildPosition == "center") {
        document.write('</center>\n');
      }
    }
  }

    function ajaxReplacer(variable) {
        variable = variable.replace(/\&/g, "OCHOCHOCH");
        variable = variable.replace(/\+/g, "PLUSPLUSPLUS");
        variable = variable.replace(/\?/g, "FRAGFRAGFRAG");
        variable = variable.replace(/\%/g, "PROCPROCPROC");
        variable = variable.replace(/\#/g, "HASHHASHHASH");
        variable = variable.replace(/\=/g, "EQUAEQUAEQUA");
        return variable;
    }
//-->
