// JavaScript Document// on load set the header text in the top frame, along with the colour.
function setupPage(colorText, bannerText) {
	top.bannerFrame.document.getElementById("bannerText").innerHTML = bannerText;
	top.bannerFrame.document.getElementById("bannerBackgroundLeft").style.backgroundColor = colorText;
	top.bannerFrame.document.getElementById("bannerBackgroundRight").style.backgroundColor = colorText;
	top.copyrightFrame.document.getElementById("copyright").style.backgroundColor = colorText;
	top.linksFrame.document.getElementById("usefulLinks").style.backgroundColor = colorText;
}