
	d0 = new Date('April 02, 2003');
	d1 = new Date();
	dt = (d1.getTime() - d0.getTime()) / (1000*60*60*24);
	document.write('<SMALL>');   
	document.write('працює ' + Math.round(dt) + '-й день');
	document.write('</SMALL>');


