<!--
function fernstart(bild,w_breite,w_hoehe)
  {
  var abmessung = "width="+w_breite+",height="+w_hoehe;

  w = window.open("","Bild",abmessung);

  var wpfad = bild; 
  var d = w.document;
  w.focus();

  d.write('<HTML><HEAD><TITLE>');
  d.write('Bild')
  d.write('</TITLE></HEAD>\n');
  d.write("<body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onBlur=self.close()>\n");
  d.write('<img src='+wpfad+' alt='+wpfad+'>\n');
  d.write('</body></html>');
  d.close();
  }

function haeussler_bigpic(bild,w_breite,w_hoehe)
  {
  var abmessung = "width="+w_breite+",height="+w_hoehe;

  w = window.open("","Bild",abmessung);

  var wpfad = bild; 
  var d = w.document;
  w.focus();

  d.write('<HTML><HEAD><TITLE>');
  d.write('Bild')
  d.write('</TITLE></HEAD>\n');
  d.write("<body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onBlur=self.close()>\n");
  d.write('<img src='+wpfad+' alt='+wpfad+'>\n');
  d.write('</body></html>');
  d.close();
  }

// JS function for uncrypting spam-protected emails:
function UnCryptMailto(s) { //
  var n=0;
  var r="";
  for(var i=0; i < s.length; i++) {
    n=s.charCodeAt(i);
    if (n>=8364) {n = 128;}
    r += String.fromCharCode(n-(1));
  }
  return r;
}
// JS function for uncrypting spam-protected emails:
function linkTo_UnCryptMailto(s) { //
  location.href=UnCryptMailto(s);
}
// -->
