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
});
});

ie9fix = function(){
 // IE9 ugly hack
 if (parseInt(jQuery('#gendialog_content').css("height"),10) < 40 ){
   var top = parseInt(jQuery(".ui-dialog").css("top"),10) - 275;
   jQuery(".ui-dialog").css({'top': (top+"px")});
   jQuery("#gendialog_content").css({height: '550px',width: "774px"});
 }
}

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');
 ie9fix();
 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');
 ie9fix();
 return false;
};
