/* 
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

There is no logical reason why a date should be stated as a 'block' and a 'force' date but in such a case, 
date will be considered blocked, ie no delivery and no processing.

*/

// Variable Group 1
// Use 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="17032009,100409,13042009,04052009,25052009,31082009,24122009,25122009,26122009,28122009,";
var block2010="01012010,02042010,05042010,03052010,31052010,30082010,25122010,27122010,28122010,";
var block2011="";
var block2012="";
var block2013="";
var block2014="";
var block2015="";


// Variable Group 2
// Use to Specify dates that need to be forced as delivery (and therefore implicitly processing) 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);
