Hi there, I have the following code... <script language="JavaScript" type="text/javascript"> <!-- hide from old browsers var curDate = new Date() document.write(curDate.toLocaleString()) //--> </script> Which outputs the following... Wednesday, 7 June 2006 11:25:04 AM Is it possible to change the code so that it outputs just the date... Eg: Wednesday, 7 June 2006 Mally