function gotosite(el){
  var siteloc = el.getAttribute("siteloc");
  if(!siteloc){
    var mapid = 'm'+el.getAttribute("pointno");
    el = document.getElementById(mapid);
    siteloc = el.getAttribute("siteloc");
  }
  window.location = siteloc;
}
