/**
 * $Id: caliso-test-yui.js 249 2011-10-23 01:48:09Z manuel_jasso $
 */
/*global YUI */

function CalisoTestYUI(allowContinue) {
    if (typeof YUI === 'undefined') {
        var err = "Unable to load JavaScript code from http://yui.yahooapis.com or https://ajax.googleapis.com\n" +
                  "Please ask your administrator to allow access to these web sites. Thank you.";
        alert(err);
        if (!allowContinue) {
            throw err;
        }
        return false;
    }
    return true;
}

