﻿  function   PageDate()   
  {   
  currentDate   =   new   Date()   
  with   (currentDate)   
                      {   
  day=getDay()   
  month=getMonth()+1     
  if (month==1){month='Jan '}
  if (month==2){month='Feb '}
  if (month==3){month='Mar '}
  if (month==4){month='Apr '}
  if (month==5){month='May '}
  if (month==6){month='Jun '}
  if (month==7){month='Jnl '}
  if (month==8){month='Aug '}
  if (month==9){month='Sep '}
  if (month==10){month='Oct '}
  if (month==11){month='Nov '}
  if (month==12){month='Dec '}
  this.document.write(month+getDate()+','+getFullYear())   
  }   
  if   (day==1){document.write('   Mon')}   
  if   (day==2){document.write('   Tues')}   
  if   (day==3){document.write('   Wed')}   
  if   (day==4){document.write('   Thurs')}   
  if   (day==5){document.write('   Fri')}   
  if   (day==6){document.write('   Sat')}   
  if   (day==0){document.write('   Sun')}   
  }   
PageDate()