<!--

function setProduct(prod_value,field_version)
{
  var the_array = eval("VersProd"+prod_value);
  setVersionText(field_version,the_array);
}

function setVersionText(the_select, the_array)
{
  the_select.length=the_array.length;
  for (j=0; j < the_array.length; j++ ) {
    the_select.options[j] = new Option(the_array[j],the_array[j]);
    }
  the_select.selectedIndex = the_select.length - 1;
}
//-->
