// Fenster mit Inhalt öffnen
<!-- Begin
function Fenster(bname,bparam,titel){
popup = window.open("","",bparam);
popup.document.write("<html><head><title>" + titel + "</title>");
popup.document.write("<\/head>");
popup.document.write("<body background=\"" + bname + "\" onClick=\"self.close();\" ");
popup.document.write("<\/body><\/html>");
}
// End Fenster mit Inhalt öffnen