// $Id$
// Common functions

function openPWin(url, width, height) {
    window.open(
        url,
        'PWin',
        'width=' + width + ', ' +
        'height=' + height + ', ' +
        'toolbar=no,' +
        'resizable=yes'
    );
    return false;
}
