# File app/helpers/application_helper.rb, line 122
   def generate_object_link (dw_object, text)
        object_type = ''
        if dw_object.objectType == 'Table' 
                 object_type = '_table'
        elsif dw_object.objectType == 'Column' 
                object_type = '_column' 
        end
        return "<a href = '" + dw_object.link_path + "' onClick = 'parent.tree.theTree.a_index[#{dw_object.tree_id}].select#{object_type}()'>#{text}</a>" 
   end