﻿function iframe_dialog_show(url, width, height) {
    var iframe_dialog_hidden_link_id = "iframe_dialog_hidden_link";

    // Remove old hidden link if it exist.
    if ($('#' + iframe_dialog_hidden_link_id).length >= 0) {
        $('#' + iframe_dialog_hidden_link_id).remove();
    }
    
    // Add hidden link if it does not exist.
    if ($('#' + iframe_dialog_hidden_link_id).length == 0) {
        var a_html_string = '<a id="' + iframe_dialog_hidden_link_id + '" class="iframe" style="display: hidden;" href="' + url + '">&nbsp;</a>';
        jQuery("body").after(a_html_string);
        //    alert(a_html_string);
    }

    var fancy_box_options = "{ 'width': " + width + ", 'height': " + height + ", 'autoScale': false, 'transitionIn': 'none', 'transitionOut': 'none' }";
    //    alert(fancy_box_options);    
    jQuery('#' + iframe_dialog_hidden_link_id).fancybox(fancy_box_options);
    jQuery('#' + iframe_dialog_hidden_link_id).click();
//    jQuery('#' + iframe_dialog_hidden_link_id).remove();
}
