/*
	functions:
		function changeImage()
		function goHome()
		function showLangMenu()
*/
	var nav=(navigator.appName=="Microsoft Internet Explorer") ? "ie" : "ns";

/*
 *	show language menu
 */
		function showLangMenu()
		{
			var mn =document.getElementById("langMenu");
			if (mn !=null) 
			{
				if (mn.style.display == "inline") mn.style.display = "none" 
				else 
				{
					mn.style.left =screen.width -((screen.width -907) / 2) -5;
					mn.style.display = "inline";
				}
			}
		}
/*
 *	Go to home page
 */
	function goHome()
	{
		parent.document.location.href='http://www.antala.com'
	}

/*
 *	Do change current image...
 */
	function changeImage()
	{
		if (arguments[0] =="") return;
	}

/*
 *	Go to home page
 */
	function setTitle()
	{
		// dummy function for obsolete functionality
	}
/*
	eof
*/
