	function cs(langId)
	{
		if (typeof(langId)=="undefined") { langId = 'en'; }
		msg = (langId == 'cy') ? 'Yn dod yn fuan': 'Coming Soon';

		alert(msg);
	}
	
	function gotoUrl(url)
	{
		window.location.href = url;
	}
	
	function mo(o, cssn)
	{
		for(var i=0;i<o.children.length;i++)
		{
			o.children[i]['oldClassName'] = o.children[i].className;
			o.children[i].className = o.children[i].className + '-H';
		}
	}
	
	function mout(o, cssn)
	{
		for(var i=0;i<o.children.length;i++)
			o.children[i].className = o.children[i]['oldClassName'];
	}
	
	function toggleMenu(mnu)
	{
		var o = document.getElementById(mnu);
		o.style.display = (o.style.display == 'none') ? 'block' : 'none';
	}

