/* copyright by Joerg Buetehorn - http://www.buetehorn.de  */

function frametest() {
if(top.frames.length > 0)
      top.location.href=self.location;
else {
return true;
 }
}

function vollbild()  {
	self.moveTo(0,0)
	self.resizeTo(screen.availWidth,screen.availHeight)
}

function init() {
	frametest();
}

function schreib(objname,br,ho,bg)  {
	document.write("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=6,0,0,0' WIDTH=" + br + " HEIGHT=" + ho + " id=" + objname + "> <PARAM NAME=movie VALUE=img\/" + objname + ".swf> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#" + bg + ">");
	document.write("<EMBED src=img\/" + objname + ".swf quality=high bgcolor=#" + bg + "  WIDTH=" + br + " HEIGHT=" + ho + " NAME=" + objname + " TYPE='application\/x-shockwave-flash' PLUGINSPAGE='http:\/\/www.macromedia.com\/go\/getflashplayer'><\/EMBED>");
	document.write("</OBJECT>");
}

function mini(ziel,breite,hoehe) {

        var seite = (screen.availWidth - breite) / 2;
        var oben = (screen.availHeight - hoehe) / 2;

        params = ('width='+ breite +',height='+ hoehe +',left='+ seite +',top='+ oben);

        Neufenster = window.open(ziel,'Information','toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,'+ params);
        Neufenster.focus();
}



