jQuery.utils = function() {	
	return {
	    checkSessionExpire: function(value){
            if(value == messages.LOGOUT){
                window.location.href = messages.path_prefix + "/default.aspx";
                return true;
            }
            return false;
        }               
	};
}();

