
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 Friday 12th August.\n\nIf you need a travelplug to arrive before \Monday 15th 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==6 && dd>39 && dd<40) || (mm==17 && dd<7)) alert(paemessage);
}




