function test(LinkPage)
{
    if(parent.frames.length != 3)
    {
        parent.frames[2].document.location.href = LinkPage;
//        setTimeout("status_setzen()", 600);
    }
}

function status_setzen()
{
    if(parent.frames[0].document.forms[0]) {
        if(document.all) parent.frames[0].position.innerHTML = "<font face='verdana' size='2'>" + document.title + "</font>";
        else parent.frames[0].document.getElementsByName("position")[0].firstChild.firstChild.nodeValue = document.title;
    }
}

function Oeffnen(Datei)
{
	Fenster = open(Datei,'Fenster','dependent=yes,scrollbars=no,resizable=no,locationbar=no,height=350,width=350,menubar=no,screenX=440;screenY=400');
	Fenster.focus();
}
function OpenWindow(Datei, Breite, Hoehe)
{
	Fenster = open(Datei,'Fenster','dependent=yes,scrollbars=no,resizable=no,locationbar=no,height=' + Hoehe + ',width=' + Breite + ',menubar=no,left=0;top=0');
	Fenster.focus();
}
