function selectRadio(id)
{
   var elm = document.getElementById(id);
   if (elm) elm.checked = true;
}
