<!--
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");
}

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();
}

//-->

