<!--
var newWindow = null
function Text(html,nombreventana,ancho,largo)
{        newWindow=window.open(html,nombreventana,"width="+ ancho +",height="+ largo +",status,scrollbars,resizable");
}

function TextTool(html,nombreventana,ancho,largo)
{        newWindow=window.open(html,nombreventana,"width="+ ancho +",height="+ largo +",status,scrollbars,resizable,toolbar,menubar,location");
}

function TextToolPlus(html,nombreventana,ancho,largo)
{        newWindow=window.open(html,nombreventana,"width="+ ancho +",height="+ largo +",status,scrollbars,resizable,toolbar,menubar,location");
}

function TextBild(html,nombreventana,ancho,largo)
{        newWindow=window.open(html,nombreventana,"width="+ ancho +",height="+ largo +",nostatus,noscrollbars,noresizable");
}


function oeffnefenster (url)
{
fenster = window.open(url, "fenster1", "width=600,height=440,status=yes,scrollbars=yes,resizable=yes");
fenster.focus();
}


//-->