function aff(v){
  if (v.style.display == "none"){
    v.style.display = "";
  }
  else{
    v.style.display= "none";
  }
}
