/* 
Add dates within the quotation marks, in the appropriate calendar year variables below.  

IMPORTANT: Please ensure that the last date of any non-empty field ends in a comma as is shown in block2009

*/

// Use each of these year-based variables to exclude dates from processing and delivery where the day 
// may be considered a processing/delivery day under normal conditions (e.g. Tuesday 25 December).

var block2009="24122009,25122009,26122009,27122009,28122009,29122009,31122009,";
var block2010="01012010,02012010,03012010,04012010,24122010,25122010,26122010,27122010,28122010,29122010,30122010,31122010,";
var block2011="01012011,02012011,03012011,04012011,";
var block2012="";
var block2013="";
var block2014="";
var block2015="";



// Use each of these year-based variables to Specify dates that need to be forced as delivery 
// days where normal rules may otherwise exclude them (e.g. Mothering Sunday)

var force2009="";
var force2010="";
var force2011="";
var force2012="";
var force2013="";
var force2014="";
var force2015="";


// If you create new variables above (in the form block20?? or force20??) for years beyond 2015
// be sure to add them to the appropriate lines below, maintaining the existing format.  
// Completed years may optionally be be removed for housekeeping and doing so will optimize processing time.

setBlockDays(block2009 + block2010 + block2011 + block2012 + block2013 + block2014 + block2015);
setForceDays(force2009 + force2010 + force2011 + force2012 + force2013 + force2014 + force2015);





