
var now=new Date();
var mm=now.getMonth();
var dd=now.getDate();
var paemessage="========================= travelplugs.co.uk =====================\n\ntravelplugs.co.uk normally despatch orders on the next working day, however we are presently\nexperiencing a high volume of orders which is causing a temporary delivery delay.\n\nAs a result, all orders placed today will not be despatched until Monday 23rd August.\n\nIf you need a travelplug to arrive before \Wednesday 25th August, please DO NOT order from us on this occasion.\n\nIf you are travelling after this date, please continue to use our website as normal service will have resumed.\n\nWe apologise for this inconvenience, and hope this short delivery delay will not cause a problem.\n";

window.onload=init;

function init()
{
if ((mm==7 && dd>5 && dd<18) || (mm==15 && dd<17)) alert(paemessage);
}



