<script language="javascript"> var DDMMYY =0 var MMDDYY =1
//skrypt pochodzi z zasobów //www.dhtml.helion.pl
function getdate(mode) { var now = new Date(); var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate(); if (mode==DDMMYY) var MonthDayYear =(dayNr+"/"+(now.getMonth()+1)+"/"+now.getYear()); else var MonthDayYear =((now.getMonth()+1)+"/"+dayNr+"/"+now.getYear());