<!--

function popup(url, title, width, height) {
        if ( width == 0) { width = 450; }
        if ( height == 0 ) { height = 300; }
        if ( title == "") { title = "popup"; }
        newwin = window.open(url, title, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + "");
        newwin.opener = self;
}

//-->
