function popup(url, title, width, height) {
    if (width == undefined) {
        width = 690;
    }

    if (height == undefined) {
        height = 500;
    }
    window.open(url, title, 'width=' + width + ',height=' + height + ',scrollbars=yes,location=no');
}
