function viewTag(evtRcd){
  if(document.getElementById('event_click_rally')){
    var xmlHttp;
    if (window.XMLHttpRequest){
      xmlHttp = new XMLHttpRequest();
    }else{
      if (window.ActiveXObject){
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
      }else{
        xmlHttp = null;
      }
    }
    xmlHttp.open("GET", "http://meropar.jp/event/click/rally/tag.do?rcd="+evtRcd+"&process=0", false);
    xmlHttp.send(null);
    if(xmlHttp.status == 200){
      document.getElementById('event_click_rally').innerHTML = xmlHttp.responseText;
    }else{
      document.getElementById('event_click_rally').innerHTML = '';
    }
  }
}
window.onload=function(){
  if(typeof(evtRcd) == "undefined"){
  }else{
//    viewTag(evtRcd);
  }
}

