<!-- Begin
function validateSelect ( form )
{
  var j=0;
  var cNameList = new Array();

  for ( var i = 0; i < document.search_form.cLibrary_Name.length; i++ ) {
   if ( document.search_form.cLibrary_Name.options[i].selected ) {
     cNameList[j] = document.search_form.cLibrary_Name.options[i].value;
     j++;
   }
  }
  document.search_form.cLibraryList.value = cNameList;

  if ( j > 50 ) {
    window.alert( "You have selected too many Community Libraries.\n" +
		  "Please reduce your selection." );
    return false;
  }


  return true;
}
// End -->
