// www.sailsignet.org.uk
//


var today = new Date;
var Future0 = new Date;
ThisYear = 2009;

var FutureMonth = 12 - 1;
var FutureDate = 25;


var faraevent = " Christmas Day 2009";
//var faraevent = " the <a href=http://www.macmillan.org.uk/coffee/>World's Biggest Coffee Morning</a> on Friday 28th September to raise funds for Macmillan Cancer support";
//var faraevent = " <a href=events/diarydates.htm>SigneT Open Meeting/Event</a> of 2009";


Future0.setMonth(FutureMonth, FutureDate);
Future0.setFullYear(ThisYear);

today1 = Date.parse(today);
future1 = Date.parse(Future0);
secleft = future1 - today1;
miliday = 24 * 60 * 60 * 1000;
daysleft = secleft/miliday;
daysleftint = Math.round(daysleft);

if (daysleftint > 1)
document.write("<p align=center>There are ", daysleftint, " days to  go until ", faraevent , "! </p>");
else if (daysleftint == 1)
document.write("<p align=center>The first", faraevent, " is <b>tomorrow!</b> </p>");
else if (today1 == future1)
document.write("<p align=center>The first", faraevent, " is <b>today!</b> </p>");
