﻿var sURL = location.href.toLowerCase();
//alert(sURL + ' ' + sURL.indexOf('contactus.aspx'));
if ((sURL.indexOf('contactus_mobile.aspx') < 0) && (screen.width <= 699)) {
document.location = "ContactUS_Mobile.aspx";
}

function blockPage() {
    $.blockUI({ theme: true, message: '<h2><div style="margin-left:130px; _margin-left:65px;"><div class="processing-spinner" style="float:left; margin:7px 0 0 5px; _margin:3px 0 0 2px;"></div><div style="float:left; padding:5px 0 0 5px;">Processing...</div></div></h2>' });
    $(document).ajaxStop($.unblockUI);
}

function showModalDialog(pageName, width, height, sHeader) {
    //$("#dialog").html("<iframe id='renderPanelIFrame' frameborder='0' src='" + pageName + ((pageName.indexOf("?") == -1) ? '?' : '&') + "' style='width:" + width + "px; height:" + height + "px; overflow:auto;'/>");
    //$("#renderPanelIFrame").src = pageName + ((pageName.indexOf("?") == -1) ? '?' : '&');
    //$("#renderPanelIFrame").style = "width:" + width + "px; height:" + height + "px; overflow:auto;";
    
    $("#renderPanelIFrame").attr('src', pageName);
    $("#renderPanelIFrame").attr('style','width:' + width + 'px; height:' + height + 'px; overflow:auto;');
    var _height = parseInt(height) + 55;
    var _width = parseInt(width) + 25;

    $("#dialog").dialog({
        bgiframe: true,
        height: _height,
        width: _width,
        modal: false,
        resizable: false,
        title: sHeader,
        draggable: false,
        autoOpen: false,
        beforeclose: function(event, ui) { $("#dialog").dialog("destroy"); }
    });

    $("#dialog").dialog("open");
}
