﻿jQuery.utils = function() {
        
	return {
        //check session expire on ajax response
        checkSessionExpire: function(value){
            if(value == "LOGOUT"){
                window.location.href = resources.path_prefix + "/Participant/Login.aspx";
                return true;
            }
            return false;
        }
	};
}();
