
<!--- Application: Corporate Intranet --->
<!--- Component: Header Date --->
<!--- Filename:	2daysdate.js --->
<!--- Author: Jason Fenton --->
<!--- Created: 08 December 2003 --->

<!--

  var today=new Date();

  if (today.getDay() == 0) {document.write("Sunday, ");}
  if (today.getDay() == 1) {document.write("Monday, ");}
  if (today.getDay() == 2) {document.write("Tuesday, ");}
  if (today.getDay() == 3) {document.write("Wednesday, ");}
  if (today.getDay() == 4) {document.write("Thursday, ");}
  if (today.getDay() == 5) {document.write("Friday, ");}
  if (today.getDay() == 6) {document.write("Saturday, ");}

  document.write(today.getDate()+" " );

  if (today.getMonth() == 0) {document.write("January ");}
  if (today.getMonth() == 1) {document.write("February ");}
  if (today.getMonth() == 2) {document.write("March ");}
  if (today.getMonth() == 3) {document.write("April ");}
  if (today.getMonth() == 4) {document.write("May ");}
  if (today.getMonth() == 5) {document.write("June ");}
  if (today.getMonth() == 6) {document.write("July ");}
  if (today.getMonth() == 7) {document.write("August ");}
  if (today.getMonth() == 8) {document.write("September ");}
  if (today.getMonth() == 9) {document.write("October ");}
  if (today.getMonth() == 10) {document.write("November ");}
  if (today.getMonth() == 11) {document.write("December ");}

  document.write(today.getFullYear() +"");  

//-->