if (typeof UNC == "undefined" || !UNC) {

    var UNC = {};
}

UNC.namespace = function() {
    var a=arguments, o=null, i, j, d;
    for (i=0; i<a.length; i=i+1) {
        d=a[i].split(".");
        o=UNC;

        // UNC is implied, so it is ignored if it is included
        for (j=(d[0] == "UNC") ? 1 : 0; j<d.length; j=j+1) {
            o[d[j]]=o[d[j]] || {};
            o=o[d[j]];
        }
    }

    return o;
};

(function() {
    UNC.namespace("system", "util");

})();

(function(){
     var popup = "";
    UNC.util.viewLarge=function(popupURL){

popup = window.open(popupURL,'detailview','width=850,height=600,top=100, left=180, resizable=yes,menubar=no,location=no,status=no,scrollbars=yes');
popup.location = popupURL;
popup.opener = self;
popup.focus();
    };
})();