function FensterOeffnen (Adresse) {
  MeinFenster = window.open(Adresse, "Zweitfenster", "");
  MeinFenster.focus();
}

function FensterOeffnenPrint (Adresse) {
  MeinFenster = window.open(Adresse, "Zweitfenster", "");
  MeinFenster.print();
}

function Print () {
  Element.hide("NavigationColumn");
 window.print();
}

function displayImage( image, width, height, name )
{
width = width;
Detail = window.open("", "_blank", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=" + width +",height=" + height );

Detail.document.open();
Detail.document.write("<HTML><HEAD><TITLE>" + name + "<\/TITLE><\/HEAD>");
Detail.document.write("<BODY>");
Detail.document.write("<a style=\"border:none;\" href=\"JavaScript:self.close();\">")
Detail.document.write("<IMG SRC='" + image + "' border=\"0\">");
Detail.document.write("<\/a>");

Detail.document.write("<div style=\"font-family:Tahoma,Verdana, Arial; font-size:11px;font-style:normal; color:#000000;margin-top:10px;\" align=\"center\">Zum Schlie&szlig;en bitte in das Bild klicken.<\/div>");
Detail.document.write("<\/BODY><\/HTML>");
Detail.document.close();
}