// Browser ermitteln
function BrowserCheck() {
	var brName = navigator.appName ;
  if (brName == "Microsoft Internet Explorer") this.brName = "IE";
	if (brName == "Netscape") this.brName = "NS";
}
function drucken() {
    print(); close(self);
}

function zeigeBild(BildName,BildTitel,breite,hoehe) {
	for(var i = BildTitel.length; i <= 36; i++) {
		var Gefunden = BildTitel.search(" ");
		if(Gefunden != -1) BildTitel = BildTitel.replace(" ", "_");

		Gefunden = BildTitel.search("-");
		if(Gefunden != -1) BildTitel = BildTitel.replace("-", "_");
	}
	hoehe = hoehe + 40;
	breite = breite + 40;
	window.open(BildName, BildTitel, 'width=' +breite+ ',height=' +hoehe+ ',status=no,locationbar=no,menubar=no,scrollbars=yes');
}

function isIframe() {
	if(top.frames.length < 1)
		top.location.href = 'http://www.dibeto.de/';
}

function WindowHeight () {
  if (window.innerHeight) {
    return window.innerHeight;
  } else if (document.body && document.body.offsetHeight) {
    return document.body.offsetHeight;
  } else {
    return 0;
  }
}