function HiLite(oObject)
{
	// Highlight The Object Passed In

	window.document.all[oObject].style.background 	= "WHITE";
	window.document.all[oObject].style.color 	= "BLACK";
	window.document.body.style.cursor 		= 'hand';
}


function UnLite(oObject)
{
	// Un HiLite The Object Passed In

	window.document.all[oObject].style.background 	= "BLACK";
	window.document.all[oObject].style.color 	= "WHITE";
	window.document.body.style.cursor 		= 'default';
}

function setSelectedIndex(oDDLB,sValue)
{
	// Set the DDLB Selected Index To That As Specified

	var i;

	for(i=0; i<oDDLB.length; i++)
	{
		if(oDDLB.options[i].value == sValue)
		{
			oDDLB.selectedIndex = i;
			oDDLB.options[i].selected = true;
			return;
		}
	}
}