<html>

<head>
/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Robin Jones :: http://www.robinjones1.freeuk.com/ */

function daysTill() {
  //----------  EDIT THE VARIABLES BELOW  ------------------
  // EDIT THE VARIABLES BELOW
  var day=	15 // Day
  var month=	7 // Month
  var year=	2009 //Year
  var event=	"Membership returns to full price"
  var end = 	"days left until"
  //----------  END OF EDIT  -------------------------------

  var daystocount=new Date(year, month -1, day)
  today=new Date()
  if (today.getMonth()==month && today.getDate()>day)
  daystocount.setFullYear(daystocount.getFullYear())
  var oneday=1000*60*60*24
  var write = (Math.ceil((daystocount.getTime()-today.getTime())/(oneday)))
  document.write('There are <strong>'+write +'</strong> '+end+' '+event)
}

<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 2</title>
</head>

<body>

</body>

</html>
