<!--
function OpenWindow(datei, breite, hoehe)
{
    new_window = window.open(datei,'screenshot','width=' + breite + ',height=' + hoehe + ',resizable=yes,menubar=no,scrollbars=no,toolbar=no,locationbar=no,screenx=0,screeny=0,status=no,innerwidth=0,innerheight=0');
    new_window.focus();
}
//->