  function alertAdminThread(idThread, iOffset) {
    complaint_show('thrd_comp_' + idThread);
  }

  function alertAdminMessage(idThreadMessage, idThread, iOffset) {
    complaint_show('msg_comp_' + idThreadMessage);
  }

  function addResponse() {
    window.location = '#response';
    focusTo('vBody');
  }

  function checkIfNotEmpty(what) {
    if (what.elements['vBody'].value == '') {
      alert(NENAPISAL_SI_ZIADEN_PRISPEVOK);
      return false;
    } else {
      return true;
    }
  }
  
  function wantDeleteThread(sThreadSubject) {
    return confirm('Do you really want to delete whole thread "' + sThreadSubject + '" ?');
  }

  function wantLockThread(sThreadSubject) {
    return confirm('Do you really want to lock the thread "' + sThreadSubject + '" ?');
  }

  function wantUnlockThread(sThreadSubject) {
    return confirm('Do you really want to unlock the thread "' + sThreadSubject + '" ?');
  }

  function wantMakeCZ(sThreadSubject) {
    return confirm('Do you really want the thread "' + sThreadSubject + '" to be only in Czech Republic?');
  }

  function wantMakeSK(sThreadSubject) {
    return confirm('Do you really want the thread "' + sThreadSubject + '" to be only in Slovakia?');
  }

  function wantMakeCS(sThreadSubject) {
    return confirm('Do you really want the thread "' + sThreadSubject + '" to be Československá?');
  }
