﻿$.ajaxSetup({ cache: false });
$().ajaxStart(function(a) {$(document.body).append('<img class="Center Loading" src="/img/loading.gif" />'); });
$().ajaxStop(function(a) {    $('.Loading').remove();});
function SaveSuccess() {
    AlertMsg('Saved Successfully');
}
function AlertError(x) { alert(GetError(x)) }
function GetError(x){ return RegExp('<title>(.+)<\/title>','g').exec(x.responseText)[1] }
function AlertMsg(msg, color) {
    if (!color) color = 'blue';
    $(document.body).append('<div id="_msg" class="Center" style="color:' + color + '"><img src="/img/icn/spin.gif" /><b>' + msg + '</b></div>');
    setTimeout(function() { $('#_msg').remove(); }, 5000);
}

function OpenTB(url, w, h, modal) {
    tb_show('', url + (url.indexOf('?') <0 ? '?': '&' )+'TB_iframe=true&height='+h+'&width=' + w + (modal==true ? '&modal=true' : '') )
}

 


  

 