// JavaScript Document
function closed(date) {
expdate = new Date(date);
curdate = new Date();
if (curdate.getTime() > expdate.getTime())
document.write('<h3 style="padding: 3px; border: 2px solid #AE0000"><a style="font-family: verdana, arial; color: #AE0000; text-decoration: none" href="http://www.irsresearch.co.uk">Sorry. This survey closed on ' + ((expdate.getDate()-1) + "-" + (expdate.getMonth()+1) + "-" + expdate.getUTCFullYear()) + '. <br>Please visit the IRS research homepage for more information.</a></h3>');
}