/**
 * @author pversai
 */
// Generic popup script.
function popWin (file,width,height,scrollbars,menubar) {
    open(file,
         'pop',
         'toolbar=no,left=20,top=20,status=no,width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',directories=no,location=no,resizable=no,menubar=' + menubar + '');
}

function popResizableWin (file,width,height,scrollbars,menubar) {
    open(file,
         'pop',
         'toolbar=no,left=20,top=20,status=no,width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',directories=no,location=no,resizable=yes,menubar=' + menubar + '');
}

