function showHideLink(divId, colour)
{
	if (document.getElementById(divId))
	{
		document.getElementById(divId).style.color = colour;
	}
}

function jsfOnLoad()
{
	var skipLink = "jsSkipLink";
	if (document.getElementById(skipLink))
	{
		var Link = document.getElementById(skipLink);
		Link.setAttribute("class","schSkipLink");
		Link.setAttribute("className","schSkipLink");
	}
}

if (window.addEventListener)
{
	window.addEventListener("load", jsfOnLoad, false);
}
else
{
	if (window.attachEvent)
	{
		window.attachEvent("onload", jsfOnLoad);
	}
	else
	{
	if (document.getElementById)
		{
			window.onload = jsfOnLoad;
		}
	}
}