// $Id: rgl.js,v 1.11 2005/07/11 16:18:43 prkas Exp $

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

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

    window.parent.location = 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;
}

