 color = "white";
	          fontsize = "1px";
	          face = "Verdana";
	          weight ="Bold";
	          d = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
	          m = new
	
	          Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
	
	          today = new Date();
	          day = today.getDate();
	          year = today.getYear();
	
	          if (year < 2000)
	          year = year + 1900;
	
	          	
	          document.write("<font size =" + fontsize + "><font color=" + color + "> ");
	          document.write(day + "-" + m[today.getMonth()] +"-" + year);
	
