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;
    };
}

function konie_powiekszenie(url, sw, sh)
{
  nowe_okno = null;
  if(sw==0) sw=150;
  if(sh==0) sh=150;
  nowe_okno=window.open(url, '3w', 'left=280,top=220,width=' +sw+ ',height=' +sh+ ',resizable=yes,scrollbars=yes,menubar=no');
}
