/**
* create date: 2007-11-07, megac@abcool.cz
*/
function VlozCas( idElement, casReloadu ){ //
	var o;
	if( o = document.getElementById(idElement) ){ //
		var datum = new Date();
		var cas;
		var d,m,y,h,i,s;
		var output;
		with (datum){ //
			h = getHours();
			i = getMinutes();
			if( getMinutes() < 10 ) i = '0'+getMinutes();
			else i = getMinutes();
			if( getSeconds() < 10 ) s = '0'+getSeconds();
			else s = getSeconds();
			d = getDate();
			m = getMonth()+1;
			if (document.all)
				y = getYear()
			else 
				y = getYear() + 1900
		}
		cas = d+'.'+m+'.'+y+' '+h+':'+i+':'+s;
		o.innerHTML = cas;
		o.textContent = cas;
		if( casReloadu > 0 ){ //
			var reload = casReloadu*1000; // prevod ze sekund 
			setTimeout('VlozCas(\''+idElement+'\','+casReloadu+')',reload);
		} 
	}
}

