// Created on March 10, 2004
// Author: Sirbu V. Dorin
// E-mail: svd@ist.ro
// © INDUSTRIAL SOFTWARE TECHNOLOGIES 2004. All rights reserved. 

var hasTimerIedom = document.all || document.getElementById;
function setDate()
{
	var time, date = new Date();
	time = date.getDate() + " " + month_names[date.getMonth()] + " " + date.getFullYear() 
	if (hasTimerIedom) {
		var wnd = document.getElementById? document.getElementById("time_cell") : document.all.time_cell;
		if(wnd) {
			wnd.innerHTML=time;
		}
	}
}
