$(document).ready(function () {

    $('#dialog').dialog({
      autoOpen: false,
      width: 800,
      height: 600,
      modal: true,
      resizable: true
    });

    $('.xref').live('click', function () {
      Search($(this).text());
      return false;
    });

});
