var breit=screen.availWidth*.7
var hoch=screen.availHeight-80

function newInfo(URL)
{
if(document.images)
newWin = open(URL,"info","left=10,top=25,menubar=no,status=no,locationbar=no,resizable=yes,scrollbars=yes");
newWin.resizeTo(breit,hoch);
newWin.focus();
}

function newMidi(URL)
{
if(document.images)
newWin = open(URL,"midi","width=650,height=200,left=10,top=25,menubar=no,status=no,locationbar=no,resizable=yes,scrollbars=yes");
newWin.focus();
}

function newFoto(URL)
{
if(document.images)
newWin = open(URL,"foto","left=0,top=0,menubar=no,status=no,locationbar=no,resizable=yes,scrollbars=no");
newWin.resizeTo(screen.availWidth,screen.availHeight);
newWin.focus();
}