// JScript source code

		var GXState, tabGX;
		function godefault()
		{
			//parent.parent.location='default.htm';
			parent.parent.location='http://www.football-online.com.au/';
		}

		function zeroGXTabs()
		{
	var vCell;
	vCell=document.getElementById("tabG1");
		   vCell.style.backgroundColor='white';
		   vCell.style.color='blue';
		   vCell.style.fontWeight='normal';
		   vCell.style.valign='bottom';
	vCell=document.getElementById("tabG2");
		   vCell.style.backgroundColor='white';
		   vCell.style.color='blue';
		   vCell.style.fontWeight='normal';
		   vCell.style.valign='bottom';
	vCell=document.getElementById("tabG3");
		   vCell.style.backgroundColor='white';
		   vCell.style.color='blue';
		   vCell.style.fontWeight='normal';

	vCell=document.getElementById("tabG4");
		   vCell.style.backgroundColor='white';
		   vCell.style.color='blue';
		   vCell.style.fontWeight='normal';
	vCell=document.getElementById("tabG5");
		   vCell.style.backgroundColor='white';
		   vCell.style.color='blue';
		   vCell.style.fontWeight='normal';
	vCell=document.getElementById("tabG6");
		   vCell.style.backgroundColor='white';
		   vCell.style.color='blue';
		   vCell.style.fontWeight='normal';
	vCell=document.getElementById("tabG0");
		   vCell.style.backgroundColor='white';
		   vCell.style.color='blue';
		   vCell.style.fontWeight='normal';
		}

		function GXInit()
		{
			GXState=-1;
			zeroGXTabs();
		}

		function hiGX(tabGX,TTcol,GxSt)
		{	// (object, colour, State)
			if(GXState!=GxSt)
			{
				tabGX.style.color=TTcol;
				tabGX.style.cursor='hand';
				tabGX.style.fontWeight='bold';
			}
			else
			{
				tabGX.style.backgroundColor='gray';
			}
		}

		function loGX(tabGX,GxSt)
		{
			if(GXState!=GxSt)
			{
				tabGX.style.fontWeight='normal';
				tabGX.style.color='blue';
			}
			else
			{
//				tabGX.style.color='blue';
				tabGX.style.backgroundColor='gray';
			}
		}

		function selectGX(tabGX,TTcol,GxSt,TLocn)
		{
			zeroGXTabs();
			GXState = GxSt;
			tabGX.style.backgroundColor=TTcol;
			tabGX.style.fontWeight='bold';
			tabGX.style.color='#ffffff';
//			tabGX.valign='top';
//			parent[1].location=TLocn;	//'whatcode3.htm';
//			GXCONTENT.location=TLocn;
//			onclick='document.location="aWebPage.htm";'
			document.location=TLocn;
		}

		function setactiv(tabGX,TTcol,GxSt)
		{
			zeroGXTabs();
			GXState = GxSt;
			tabGX.style.backgroundColor=TTcol;
			tabGX.style.fontWeight='bold';
			tabGX.style.color='#ffffff';
		}
//