openDialog = function (title,w,h,url){
    $dialog = $("<div id=\"DialogWin\" title=\"Dialog title\" style=\"visiblity:hidden;display:none;padding:0px;overflow:hidden;z-index:2000000\"><iframe id=\"DialogIframe\" class=\"frwSpinningWheel\" style=\"width:100%;height:100%;margin:0px;padding:0px\" marginwidth=\"0\" frameborder=\"0\" scrolling=\"auto\" src=\"" + url + "\"></iframe></div>");
    $dialog.appendTo("body");
    $("#DialogWin").dialog({
        width: (w==0 ? $(document).width()-10 : w),
        height: (h==0 ? $(document).height()-10 : h),
        title: title,
        modal: true,
        resizable: true,
        draggable: true,
        //show: 'fold',
        zIndex: 2000000,
        dialogClass: 'ui-widget-header',
        close: function () {
            $("#DialogWin").dialog("destroy").remove()
        }
    });
}

