function mapsave(idx,type1,type2)
{
    var xmlHttp;
    if(window.XMLHttpRequest){
        var xmlHttp = new XMLHttpRequest();
    }
    else if(window.ActiveXObject){
        var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    data = 'text=' + idx + "|"+ type1 + "|"+ type2;
    xmlHttp.open('POST', '../commpage/pointmapsave.php', true);
    xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    xmlHttp.onreadystatechange = function()
    { 
          if (xmlHttp.readyState == 4)
          {       
              if(parseInt(xmlHttp.responseText) == 1)
              {   
                  alert('このポイントをMyポイントマップに追加しました！');
              }
              else if(parseInt(xmlHttp.responseText) == 0)
              {
                  alert('登録失敗しました！');
              }
              else if(parseInt(xmlHttp.responseText) == 2)
              {
                  alert('このポイントはすでにMyポイントマップに登録されています！');
              } 
          }  
    } 
    if(confirm('このポイントをMyポイントマップに登録しますか？'))
    { 
        xmlHttp.send(data); 
    }    
}
