<!--Date Greeting--> <!-- This whole script goes in the HEAD the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2005, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- var month = new Array(); month[0]="January"; month[1]="February"; month[2]="March"; month[3]="April"; month[4]="May"; month[5]="June"; month[6]="July"; month[7]="August"; month[8]="September"; month[9]="October"; month[10]="November"; month[11]="December"; var theMonth = "January"; // change the values var theDate = "01"; // at left to suit your var theYear = "2006"; // needs today = new Date(); date = today.getDate(); month = (month[today.getMonth()]); year = today.getFullYear(); if (month == theMonth && theDate == date && theYear == year) { window.alert('Happy New Year!'); } // --> </script>