<!--Oeffnen eines beliebigen Fensters//-->

function popup(url, name)
{
  fenster=window.open(url,name,"status=no,resizable=no,scrollbars=yes,toolbar=no,width=700,height=550,screenx=1,screeny=1");
}

function popupsize(url, name, width, height)
{
  fenster=window.open(url,name,"status=no,resizable=no,scrollbars=yes,toolbar=no,width="+width+",height="+height+",screenx=1,screeny=1");
}

function showfileinfo(filename) {

   fileinfo = window.open(filename, "fileinfowindow", "status=no, resizable=yes, scrollbars=yes,toolbar=no,width=650, height=450");
}



