	  // -------------------------------------------------------------------------
 	//  Name: SelectOptionInList
 	//  Abstract: Given a select list and an ID search the list for the option with
 	//   			the matching ID and select it.
 	// -------------------------------------------------------------------------
 	function SelectOptionInList( lstSelectList, intID )
 	{
  		try
  		{
   			var intIndex = 0;
   			// Loop through all the options
   			for( intIndex = 0; intIndex < lstSelectList.options.length; intIndex++ )
   			{
    				// Is this the ID we are looking for?
    				if( lstSelectList.options[intIndex].value == intID )
    				{
						// Select it
						lstSelectList.selectedIndex = intIndex;
						// Yes, so stop searching
						break;
    				}
   			}
  		}
  		catch( expError )
  		{
   			/*alert( "ClientUtilities1.js::SelectOptionInList( ).\n" +
						"Error:" + expError.number + ", " + expError.description );
						*/
  		}
 	} 
	 // SelectOptionInList