function confirmSubmit(msg) {
 return confirm(msg);
}

function popUp(URL) {
 pwn = window.open(URL, 'birojapasaule', 'toolbar=no,scrollbars=yes,location=no,status=no,menubar=no,resizable=no,width=600,height=600');
 if (window.focus) {pwn.focus()}
 return false;
}

function toggleChecks(cbElem, groupName)
{
  var f = cbElem.form;
  if (f.elements[groupName] != null) {
    if (f.elements[groupName].length == null) {
      cb = f.elements[groupName];
      cb.checked = cbElem.checked;
    } else {
      for (var i = 0; (cb = f.elements[groupName][i]); i++) {
        if (!cb.disabled) {
          cb.checked = cbElem.checked;
        }
      }
    }
  }
}

