function potwierdzenie_usun() {
  var sprawdz = window.confirm("Czy napewno chcesz usunąć? Pamiętaj że przywrócenie będzie nie możoliwe!");
    if (sprawdz == true) {
  return true;
  
  }
  else if (sprawdz == false) {
    return false;
  }
}

function field_value_lent (name1, name2) 
  {
    data = document.getElementById(name1).value;

    size = data.length;
    document.getElementById(name2).innerHTML = size;
  }

function potw(id_element, urll){
  if (document.getElementById(id_element).checked == true) {
    zmien("popup");
    document.location.href=urll;
  } else {
    alert("Aby oddać głos musisz potwierdzić przeczytanie treści uchwały.");
  }
}

if (document.images)
{
  for(num_pic=2;num_pic<9;num_pic++){
    pic1= new Image(100,25); 
    pic1.src="/images/"+num_pic+"z.jpg"; 
  }
    
}

function menu_mouse(id, name, co, dir){
//najechany
if(co==1){
    document.getElementById(id).style.background='url(/images/napisy/'+dir+'/'+name+'z.jpg)';
}else{
    document.getElementById(id).style.background='url(/images/napisy/'+dir+'/'+name+'.jpg)';
}
}

function p_f_coment() {
    styl=$("#coment").css("display");

    if(styl=="none"){
      $("#coment").slideDown("slow");
      $("#button_add_c").html("Ukryj formularz dodawania");
    }else{
      $("#coment").slideUp();
      $("#button_add_c").html("Dodaj komentarz");
    }   
  }


