
var rdcUtils = {

    tvar : "",
        
    init : function() {
        
    },
    
    openWin : function(tURL, tName, tProps) {
        var tWin = window.open(tURL, tName, tProps);
        if (tWin != null) {
            tWin.focus();
        }
    }
    
}


//rdcUtils.init();