// Script zum Öffnen eines neuen Fensters
//
// Aufruf: <A HREF="javascript:popupPage('URL', 'Fenstername', breite, höhe, scrollbars);" ...>
//
// (c) 2000 mediazwo ag

function popupPage(seite, name, w, h, sb)
{
    var windowprops = "location=no,scrollbars="+ sb +",menubars=no,toolbars=no,resizable=yes,left=10,top=10,width=" + w + ",height=" + h;
    popup = window.open(seite,name,windowprops);
}
