function newwindow(url)
{
  window.open(url,'','scrollbars=yes, location=no, status=no, width=630, height=500, resizable');
}


function newhint(url)
{
  window.open(url,'','scrollbars=yes, location=no, status=no, width=450, height=300, resizable,menubar=no');
}


function radios_enable(formname, name, enable)
{
  radios=window.document.getElementById(formname).elements[name];
  if(radios)
    for(i=0; i<radios.length; i++)
    {
      radios[i].disabled = !enable;
      if(!enable)
        radios[i].checked = false;
    };
}

