function menuChg(inObj, mode)
{
	if (mode == 'over')
	{
		inObj.style.backgroundColor='#9AB774';
	}
	else
	{
		inObj.style.backgroundColor='#BACE99';
	}
}

function topNavChg(inObj, mode)
{
	if (mode == 'over')
	{
		inObj.style.backgroundColor='#89ADBF';
	}
	else
	{
		inObj.style.backgroundColor='#245564';
	}
}

function popper(url,w,h,t,l,s) 
{
	window.open(url,'popwin','width=' + w + ',height=' + h + ',scrollbars=' + s + ',menubar=no,toolbar=no,status=no,resizable=yes,top=' + t + ',left=' + l);
}