jQuery(document).ready( function() {
  jQuery("[srcid]").click( function() {
    var srcid = jQuery(this).attr("srcid");
    var href = this.href;
    jQuery("<div id=modalData><center>Please Wait...</center></div>").modal(
      {
        onShow: function() {
          jQuery("#modalData").load(href + " #" + srcid);
        }
      }
    );
    return(false);
  });
});


