//Statuszeilentext
window.defaultStatus = "Jugendfeuerwehr Zell im Wiesental";

// Anzeige in Frames verhindern
if(top!=self)
  top.location=self.location;

//neues Fenster öffnen
function openWindow(file,width,height){
  MeinFenster = window.open(file, "newWindow", "width="+width+",height="+height+",scrollbars=no");
  MeinFenster.focus();
  return;
 }

//überarbeitetes neues Fenster öffnen
function picOpen(pic, width, height) {
  win = window.open("","","width="+width+",height="+height);
  win.document.open();
  win.document.write("<div align=\"center\"><img border=\"0\" src=\""+pic+".jpg\" alt=\"Bild Nummer "+pic+"\" ><br><div style=\"color:#FFFFFF;\"><a style=\"text-decoration:none;font-size:12px;font-family:Arial;color:#FF0000;\" href=\"diashow.htm\">Diashow</a>&nbsp;-&nbsp;<a style=\"text-decoration:none;font-size:12px;font-family:Arial;color:#FF0000;\" href=\"javascript:self.close()\">schließen</a></div>");
  win.document.title="Bild";
  win.document.bgColor="#000000;";
}
