/* 
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="01022009,02022009,03022009,";
var block2010="01012010,02012010,";
var block2011="";
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="08022009,17012009,";
var force2010="03012010,";
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);
