<!--

	function init()
	{
	}	

	function addFavs()
	{
		var url=document.location.href;
		var title=document.title;
		if (document.all) {
			// i.e.
			window.external.AddFavorite(url, title);
		} else if (window.sidebar) {
			// ns6 & mozilla
			window.sidebar.addPanel(title, url, "");
		}
	}

	function setAsHomepage(id)
	{
		if (document.all) { //i.e.
			document.getElementById(id).style.behavior="url(#default#homepage)";
			document.getElementById(id).setHomePage("http://www.pokerface.co.il");
		}
		else { // all other browsers: ns6, ff etc...
			alert("To set a homepage in Netscape or Mozilla browsers drag the link to the \"Home\" button.");
		}
	}
			
	function moveMenu(id)
	{
		for (el = document.getElementById(id+"mainMenu"), left=0; el.tagName != "BODY";  el=el.offsetParent)
			left += el.offsetLeft;
		right = document.body.scrollWidth - left - document.getElementById(id+"mainMenu").offsetWidth;
		document.getElementById(id+"Container").style.right = right;
	}
//-->