function toggle_visibility(id) {
  var e = document.getElementById(id);
  if (e.style.display == 'none') { e.style.display = 'block'; e.style.visibility = 'visible'; } else { e.style.display = 'none'; e.style.visibility = 'hidden'; }
}
function displayMap(id, height, width) {
  window.open('/assets/scripts/map.php?lid='+id,'','scrollbars=yes,menubar=no,height=' + height + ',width=' + width + ',resizable=yes,toolbar=no,location=no,status=no');
}
function trackclick(a) {
  if (document.images){
     b=new Image();
     b.src=a;
  }
  return true;
}
function tracknewsclick(a) {
  if (document.images){
     b=new Image();
     b.src=a;
  }
  return true;
}

