﻿        var CartReLoadCounter_TimesLoaded = 0;
        
        CartReLoadCounter_Reset = function() {
            CartReLoadCounter_TimesLoaded = 0;
        }
        
        CartReLoadCounter_IsDone = function(pCount) {
            return (CartReLoadCounter_TimesLoaded == pCount) ? true : false;
        }
        
        CartReLoadCounter_Increment = function() {
            CartReLoadCounter_TimesLoaded++;
        }
