// JavaScript Document

function showorhide(id) {
  if (document.getElementById(id).style.visibility == "hidden") {
    document.getElementById(id).style.visibility = "visible";
  } else {
    document.getElementById(id).style.visibility = "hidden";
  }
}

function openPopup(url, popname, h, w) {
    window.open(url, popname, 'height=' + h + ',width=' + w);
}

function showorhideItem(id){
    document.getElementById('itemContent').innerHTML = document.getElementById('item' + id).innerHTML;
    document.getElementById('consejosPopup').style.visibility = "visible"
    
}