function visibility(obj) {

  if (!obj.style.display) { obj.style.display = 'none'; }

  if(obj.style.display == 'none') {
    obj.style.display = 'block';

  } else {
    obj.style.display = 'none';
  }
}

