var sCPMainSource = "";
function fnPageLoad()
{
	window.name = 'CP'
	oWuCalls = new Array();
	oWuCalls[0] = "fnPageReset()";
	oMarqueeTools = new Marquee("oMarqueeTools");
	bSupressFirstTabAutoWriteUp = true;
	fnOnLoad();	
	//set the id of the scrollable component
	oMarqueeTools.sScrollComponentId="TOOLCOLUMNS";
	//set the type of scrolling
	oMarqueeTools.sScrollVerticalHorizontal = "H";
	//start the scrolling
	//oMarqueeTools.populate("actltoolsdiv");		
	sCPMainSource = window.document.getElementById("centerarea").innerHTML 

	alert('Site is being restructured. Please bear with us.');
	
}
window.onload =fnPageLoad;

function fnPageReset()
{
	window.document.getElementById("centerarea").innerHTML = sCPMainSource;
	fnPageLoad();
}
