/* function openCover(bild,titel,w,h)
		öffnet ein neues Browserfenster mit folgenden Eigenschaften:
		@para bild		Name der Bilddatei relativ zum aktiven Dokument
		@para titel		Titel des neuen Fensters
		@para w				Breite des Bildes und des Fensters
		@para h				Höhe des Bildes und des Fensters
*/

function openCover(bild,titel,w,h){
  cw = window.open("#","titel","width="+w+",height="+h);
  cw.document.writeln("<html><head><title>"+titel+"</title></head>");
  cw.document.writeln("<body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 >");
  cw.document.writeln("<img src=\"" + bild + "\" width=\""+w+"\" height=\""+h+"\" alt=\""+titel+"\"></body></html>");
  cw.document.close();
  cw.focus();
  return true;
}

