//Alerts user when current browser is below a certain version number
//For example, if browserVersion is set to 7, a version 6 will get a warning

function restrict_browser(browserName, browserVersion)
{
    if(get_varValue('rbrows') != "y")
    {
        var currentBrowser      =   id_browserName();
        var currentVersion      =   id_browserVersion();
        
        if(browserName == currentBrowser && browserVersion > currentVersion)
        {
            browser_compAlert(browserName, 'bComp(err 67)', 'rbrows');
        }
    }
}