jQuery(function() {
  jQuery('<div id="gendialog_content"></div>').dialog({
  modal: true,
  autoOpen: false,
  title: 'title',
  resizable: false,
  draggable: false,
  closeOnEscape: true,
  width: 800, height: 600
});
});

showDialog = function(el,dclass,content) {
 jQuery("#gendialog_content").dialog({
 title:(el.title) ? el.title : 'External Site',
 dialogClass: (dclass) ? dclass : ''
 });
 (content) ? jQuery('#gendialog_content').html(content) : false;
 jQuery('#gendialog_content').dialog('open');
 return false;
};

showCTA = function(cta_title,cta_class,cta_url,cta_id) {
 jQuery("#gendialog_content").dialog({
 title:(cta_title) ? cta_title : 'External Site',
 dialogClass: (cta_class) ? cta_class : 'gendialog'
 });
 jQuery.get(cta_url+"/show_cta_content",{ctaid:cta_id},function(data){
     jQuery('#gendialog_content').html(data);
 });
 jQuery('#gendialog_content').dialog('open');
 return false;
};
