// $Id: rgl.js,v 1.10 2003/01/16 12:49:02 enket Exp $

// FUNCTION: doInfoRGL(inRGL)
function doInfoRGL(inRGL) {
    var myUrl = document.go_rglmeta_url;

    myUrl = myUrl.replace(/RGLID/, inRGL);

    window.parent.location.replace(myUrl);

    return;
} 

// FUNCTION: doPrintRGL(inRGL)
function doPrintRGL(inRGL) {
    var myUrl = document.go_rglprint_url;

    doPopupWindowFor(window.parent.parent.parent.job, myUrl, 'print');
    return;
} 

// FUNCTION: doExportRGL(myRGL)
function doExportRGL(inRGL) {
    var myUrl = document.go_rglexport_url;

    doPopupWindowFor(window.parent.parent.parent.job, myUrl, 'export');
    return;
}

