<!-- update 03/27/2000
function tgl()
{
today=new Date();
namabulan = new Array(11);
namabulan[0]="Januari";
namabulan[1]="Februari";
namabulan[2]="Maret";
namabulan[3]="April";
namabulan[4]="Mei";
namabulan[5]="Juni";
namabulan[6]="Juli";
namabulan[7]="Agustus";
namabulan[8]="September";
namabulan[9]="Oktober";
namabulan[10]="November";
namabulan[11]="Desember";
if(today.getYear()<100)
 tnggl.innerText=today.getDate()+" "+namabulan[today.getMonth()]+" 19"+today.getYear();
else
 tnggl.innerText=today.getDate()+" "+namabulan[today.getMonth()]+" "+today.getYear();
 setTimeout("tgl()",1000);
}
//-->

<!-- CDSoft says This's new Millenium -->
<!-- Y2K compliant tested on 12/21/99 by Cahya DSN -->
<!-- copyright (c) 1999 by CDSoft Corp. Research -->