﻿/*******************************
サイドメニュー「お問い合わせ」からメールタイトルに「HPからのお問い合わせ」を入れる指定
WindowsではShift-JISで、MacではUTF-8に変換して送る
「subject=」後に「HPからのお問い合わせ」をエンコードしたものを挿入

●Windows用Shift-JIS　= HP%82%a9%82%e7%96%e2%82%a2%8d%87%82%ed%82%b9
●Mac用UTF-8 = HP%e3%81%8b%e3%82%89%e5%95%8f%e3%81%84%e5%90%88%e3%82%8f%e3%81%9b
●メールアドレスをスパムから少しでも守るためにエンティティ化（manta@blue-water-divers.jpをエンティティ化）
 = ma&#110;&#116;a&#64;b&#108;&#117;&#101;&#45;&#119;&#97;&#116;er-d&#105;&#118;e&#114;s.jp

リンクを貼る際の記述例
<a href="mailto:ma&#110;&#116;a&#64;b&#108;&#117;&#101;&#45;&#119;&#97;&#116;er-d&#105;&#118;e&#114;s.jp?subject=HP%82%a9%82%e7%96%e2%82%a2%8d%87%82%ed%82%b9" id="mailto">お問い合わせ</a>
*******************************/

if(typeof jQuery != "undefined"){ //jQueryの読み込み確認
$(function() {   
    var ua = navigator.userAgent.toUpperCase();   
    if (ua.indexOf("MAC") >= 0) {   
        $('a').get(0).href = 'mailto:ma&#110;&#116;a&#64;b&#108;&#117;&#101;&#45;&#119;&#97;&#116;er-d&#105;&#118;e&#114;s.jp?subject=HP%e3%81%8b%e3%82%89%e5%95%8f%e3%81%84%e5%90%88%e3%82%8f%e3%81%9b';   
    } else {   
        $('a').get(0).href = 'mailto:ma&#110;&#116;a&#64;b&#108;&#117;&#101;&#45;&#119;&#97;&#116;er-d&#105;&#118;e&#114;s.jp?subject=HP%82%a9%82%e7%96%e2%82%a2%8d%87%82%ed%82%b9';   
    }   
});

/*******************************
新しくウィンドウを開く

リンクを貼る際の記述例　2箇所appo.htmlがあります
<a href="../srv/appo.html" onClick="javascript:window.open('../srv/appo.html','a','width=400,height=400,scrollbars=yes'); return false;">予約状況</a>
*******************************/
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
