<!-- Multi-Date Greeting - II --> <!-- This whole script goes in the HEAD the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2007, Sandeep Gangadharan --> <!-- For more free scripts go to http://www.sivamdesign.com/scripts/ --> <!-- var theDate = new Array("01", "14", "27"); // add all dates you wish to send the greeting on the left in the same format shown today = new Date(); date = today.getDate(); for (var i = 0; i <= theDate.length; i++) { if (theDate[i] == date) { window.alert('This is an alert for ' + theDate[i] + '!'); } } // --> </script>