// Script zum Öffnen eines neuen Fensters
//
// Aufruf: <A HREF="javascript:popupPage('URL', 'Fenstername', breite, höhe);" ...>
//
// (c) 2000 Mediazwo / Andreas Schallwig

function popupPage(seite, name, w, h)
{
    var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,left=0,top=0,width=" + w + ",height=" + h;
    popup = window.open(seite,name,windowprops);
}
