function loadPaneNav(PaneArray)
{
	
	var crntItem, i;
	//alert("LOADING PANE");
	for (i=0; i<PaneArray.length; i++)
	{
		crntItem = PaneArray[i];
		html_objs[crntItem] = new htmlObj(window,crntItem);
		//window.alert(crntItem + html_objs[crntItem]);
	}
	
}

function showPane(pane_ref)
{
	if (pane_ref == 'LatestNewsPane')
	{
		document.location.href= 'News.asp?col_scheme_ref='+col_scheme_ref;
	}
	else
	{
		html_objs[currentPane].hide();
		html_objs[pane_ref].show();
		currentPane = pane_ref;
	}
}