﻿var referrerUrlz = location.href;

function testO()
{
if (referrerUrlz == "http://www.excellgaming.com/")
	{
	document.getElementById("index").setAttribute("class", "here");
	}
	
if (referrerUrlz == "http://www.excellgaming.com/forum.php")
	{
	document.getElementById("forum").className ="here";
	}
	
if (referrerUrlz == "http://www.excellgaming.com/free.php")
	{
	document.getElementById("free").className ="here";
	}
	
if (referrerUrlz == "http://www.excellgaming.com/chronos.php")
	{
	document.getElementById("chronos").className ="here";
	}
}
	
	
	
var browserName=navigator.appName;

if (browserName=="Microsoft Internet Explorer")
	{
	alert("The site looks aweful in Internet Explorer.");
    alert("Please upgrade to Firefox or Google Chrome.");
	}


