function populateData( name ) { 
 
	select	= window.document.directsearch.where; 
	string	= ""; 
 
		// 0 - will display the new options only 
		// 1 - will display the first existing option plus the new options 
 
	count	= 0; 
 
		// Clear the old list (above element 0) 
 
	select.options.length = count; 
	select.options[count++] = new Option( 'Any' ); 
 
		// Place all matching categories into Options. 
 
	for( i = 0; i < arrayData.length; i++ ) { 
		string = arrayData[i].split( "|" ); 
		if( string[0] == name ) { 
			select.options[count++] = new Option( string[1] ); 
		} 
	} 
 
		// Set which option from subcategory is to be selected 
 
	//select.options.selectedIndex = count; 
 
		// Give subcategory focus and select it 
 
//	select.focus(); 
 
} 
function DirectValidate()
{
  return true;  
}
