        var expireDate = "20101104";
        var nowDate = new Date();
        var day = nowDate.getUTCDate();
        var month = nowDate.getUTCMonth();
        var month1 = month + 1;
            if (month1 < 10)
               {
                month1 = "0" + month1;
               }
            if (day < 10)
               {
                day = "0" + day;
                }
         var year = nowDate.getFullYear();
         var GMTdate = year + "" + month1 + "" + day
         if (GMTdate < expireDate) 
                {
        document.write("Support this site - make your next Amazon purchase from our <a href='http://folkshop.daysofsail.co.uk'>on-line shop</a>")
                }
         else
                {
document.writeln('<font size=2 face="arial"><b>Enjoyed the pictures? - why not<a href="http://www.efngallery.co.uk/buyusadrink.htm">buy the photographer a drink?</a></b></font>');
                 }

