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.mumf-levice.sk/');
	}
}

function m_show(id) {
			document.getElementById(id).style.display = "block";
		}
		function m_hide(id) {
			document.getElementById(id).style.display = "none";
		}
		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);

		} 
