function newWindow(what)
{
  window.open(what);
}
function potwierdzCzyszczenie(form, quest)
{
        if (confirm(quest))
                form.submit();
}

function ask(adr, quest)
{
        if (confirm(quest))
                document.location.href=adr;
}

function setTitle(what)
{
  span=document.getElementById('nazwaGrupy')
  span.innerHTML=what;
}

function clearTitle()
{
  span=document.getElementById('nazwaGrupy')
  span.innerHTML="";
}
