
	function sel(index)
	{
		set_td(index, "#ffffaa", "underline", 100);
	}

	function unsel(index)
	{
		set_td(index, "#eeee77", "none", 30);
	}

	function set_td(index, col, text_dec, op)
	{
		if (document.all)
		{
			document.all.tags('td')[index*2+2].style.backgroundColor = col;
			document.all.tags('td')[index*2+2].style.textDecoration = text_dec;
			document.all.tags('td')[index*2+2].style.filter = "Alpha(opacity=100, finishopacity=" + op + ", style=2)";
		}
		else
		{
			document.getElementsByTagName('td')[index*2+2].style.backgroundColor = col;
			document.getElementsByTagName('td')[index*2+2].style.textDecoration = text_dec;
		}
	}

	function sel_link(page)
	{
		parent.main.location.href = "../" + page;
	}
	
