//*-------------------*//
//*Create a new windo given properties from link*//
//*IE: <a href="javascript:NewWindow(1024,768,'http://www.page_to_open.com');">*//
function NewWindow(width,height,url) {
	window.open(url,"PopUp","menubars=0,scrollbars=1,resizable=1,height="+height+",width="+width);
}
//*-------------------*//

//*-------------------*//
//*This controls the Tabbed Info Box.*//
//* intThisId = A specific tab in the list of tabs *//
//* strBase = Base name of the tab( ie: topNews) *//
//* intTotalIds = A count of the total number of Ids to work from. *//
//*IE: onmousedown="switch_tab_newslist(1, &quot;topNews&quot;, 5) means switch to the first tab in the newslist of tabs named topNewsTab1 to topNewsTab5*//
function switch_tab_newslist(intThisId, strBase, intTotalIds)
{
	document.getElementById(strBase+intThisId).style.display='block';
	document.getElementById(strBase+'Tab'+intThisId).style.backgroundColor='#FFFFFF';
	document.getElementById(strBase+'Tab'+intThisId).style.zIndex='60';

	for (var i=1; i<=intTotalIds; ++i)
	{
		if (i != intThisId)
		{
			document.getElementById(strBase+i).style.display='none';
			document.getElementById(strBase+'Tab'+i).style.background='#DAE5F6';
			document.getElementById(strBase+'Tab'+i).style.zIndex='40';
		}
	}

}
//*-------------------*//