// JavaScript Document
var footer = document.getElementById("footer");
var active = location.search.replace("?css=","").toUpperCase();

if (active.toUpperCase() == "BUSINESS")
{
	SetBusinessStyle();
}

function OpenUrl(newLocation)
{
	window.parent.location.href = newLocation;
}

function SetBusinessStyle()
{
	footer.className = "business";
}

