<!--
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 TextBildPlus(html,nombreventana,ancho,largo)
{        newWindow=window.open(html,nombreventana,"width="+ ancho +",height="+ largo +",nostatus,scrollbars,noresizable");
}

//-->