function GoByOption( form )
{
  var ref = form.options[form.selectedIndex].value;

  if (ref != '$noref')
    location.href = ref; 
}

