//\//////////////////////////////////////////////////////////////////////////////////
//\
//\  Write Site Update Date Function
//\  This notice must remain untouched at all times.
//\  Copyright I.T. Lity. All rights reserved.
//\
//\  Author: Patrice MOUSSET
//\  Last modified 1 III 07
//\  Modification content: update of the Last modification date
//\
//\  This script is published under the open source license applicable to Luciol.
//\  Please read the license agreement online at: www.luciol.info
//\
//\//////////////////////////////////////////////////////////////////////////////////

<!-- Date -->
var months=new Array(13);
months[1]="January";
months[2]="Februry";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getFullYear();
function DateTag () {
  document.write(date + " ");
  document.write(lmonth + " " + year);
}
<!-- Date -->

<!-- Write Site Update Date -->
function SiteUpdateDateTag () {
  document.write('Last Site Update&nbsp; March, 1st 2007');
}
function SiteUpdateDateTagFR () {
  document.write('Site mis &agrave; jour le 1er mars 2007');
}
function SiteUpdateDateTagSP () {
  document.write('Ultim&aacute; ponida al di&aacute; del sitio web el 1 Marzo 2007');
}
<!-- Site Update Date -->

