<!--
//display the date on a webpage and can be offset as required on line 8

var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var today = new Date()
var todayInMS = today.getTime()
var inthreedays = todayInMS + (60 * 60 * 24 * 0 * 1000) // edit the 0 to change the number of days
var newdate = new Date(inthreedays)
document.write(weekday[newdate.getDay()] + ", ")
document.write(monthname[newdate.getMonth()] + " ")
document.write(newdate.getDate() + " ")
document.write(newdate.getFullYear())
//-->