function tlac () {
		window.print();
}
function bookmarksite(title, url)
{
	if (document.all)
	window.external.AddFavorite(url, title);
		else if (window.sidebar)
		window.sidebar.addPanel(title, url, "");
		else
		window.sidebar.addPanel(title, url, "");
}

function NastavHomePage (){
	if (document.all) {
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage('http://www.futbalovekluby.sk/');
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
		
function MM_openWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function startclock()
		{
			var thetime=new Date();

			var nhours=thetime.getHours();
			var nmins=thetime.getMinutes();
			var nsecn=thetime.getSeconds();
			var AorP=" ";

			if (nhours==0)
				nhours=12;

			if (nsecn<10)
				nsecn="0"+nsecn;

			if (nmins<10)
				nmins="0"+nmins;
			
			document.getElementById("clockspot").value=nhours+":"+nmins+":"+nsecn+" "+AorP;

			setTimeout('startclock()',1000);

		} 


