function CG_SelectElem(theSelectBox,vID)
{
	var i;
	i = 0;
	while (i < theSelectBox.length)
	{
		if (theSelectBox.options[i].value == vID )
		{
			theSelectBox.options[i].selected = true;
		}
		i++;
	}
}