<!-- Diese Anwendung stammt von www.modus-dancing.de

var browser = new Object();
    browser.midres = (screen.width <= 800);
    browser.highres = (screen.width > 800);

function Lnk(){
    if(window.name=="Externframe")window.close();
    else parent.Hauptframe.location.href="../home/default.htm" 
    }

function OpenWin(theURL,winName,win_width,win_height){
    var win=window.open(theURL,winName,"width="+(win_width)+
    ",height="+(win_height)+",scrollbars=1,resizable=1");
    win.moveTo(screen.width-262,(screen.height-screen.height+30));
    win.focus();
    }

function PopWin1(theURL,winName,win_width,win_height){
    var win=window.open(theURL,winName,"width="+(win_width)+
    ",height="+(win_height)+
    ",scrollbars=1,resizable=1,left=30,top=30");
    win.setTimeout("window.close()",90000);
    }

function Over(){
    document.klick.src=t_klick1.src;
    }

function Out(){
    document.klick.src=t_klick.src;
    }

// Diese Anwendung stammt von www.rabich.de
function bild(img_url, img_title, img_width, img_height)
    {
    wnd = open("",
             "Bildanzeige",
             "width=" + (img_width + 22) + ",height=" + (img_height + 28) +
             ",innerWidth=" + (img_width + 22) + ",innerHeight=" + (img_height + 28) +
             ",toolbar=0,location=0,directories=0,status=0,menubar=0" +
             ",scrollbars=0,resizable")

    var baseadr = location.href
    var lastsl  = location.href.lastIndexOf("\\")
    if(lastsl >= 0)
	{
	baseadr = baseadr.substring(0, lastsl + 1)
	}
    else 
	{
	lastsl = location.href.lastIndexOf("/")
	if(lastsl >= 0)
	baseadr = baseadr.substring(0, lastsl + 1)
	}
    with(wnd.document)
	{
	open("text/html")
	writeln("<HTML>")
	writeln("<HEAD><TITLE>" + img_title + "</TITLE>")
	writeln("<BASE HREF=\"" + baseadr + "\"></HEAD>")
	writeln("<BODY BGCOLOR=WHITE onblur='window.close()'>")
	writeln("<A HREF=\"javascript:self.close()\"><IMG SRC=\"" + img_url +
	"\" WIDTH=" + img_width +
	" HEIGHT=" + img_height +
	" HSPACE=0 VSPACE=0 ALT=\"close - " + img_title + "\"></A>")
	writeln("</BODY></HTML>")
	close()
	}
    wnd.focus()
    }
//-->
