// Google翻訳のページから抜ける。
//var orgAdrs = decodeURIComponent(window.document.baseURI);
//document.write('<a href="' + orgAdrs + '" target="_top"><img src="./images/flag_ja.png" style="border:0;" alt="日本語のページに戻る"></a> ');

// 韓国 target="_self"でGoogle翻訳を開く。
var u='http://www.microsofttranslator.com/bv.aspx?ref=Internal&from=ja&to=ko&a=';
u += escape(location.href);
document.write('<a href="'+u+'" target="_self" class="toEnglish"><img src="./images/flag_ko.png" style="border:0;" alt="Korean"></a> ');

// 中国語(簡体) target="_self"でGoogle翻訳を開く。
var u='http://www.microsofttranslator.com/bv.aspx?ref=Internal&from=ja&to=zh-CHS&a=';
u += escape(location.href);
document.write('<a href="'+u+'" target="_self" class="toEnglish"><img src="./images/flag_zh-CN.png" style="border:0;" alt="Chinese (Simplified)"></a> ');

// 中国語(繁体) target="_self"でGoogle翻訳を開く。
var u='http://www.microsofttranslator.com/bv.aspx?ref=Internal&from=ja&to=zh-CHT&a=';
u += escape(location.href);
document.write('<a href="'+u+'" target="_self" class="toEnglish"><img src="./images/flag_zh-TW.png" style="border:0;" alt="Chinese (Traditional)"></a> ');

// 英語 target="_self"でGoogle翻訳を開く。
var u='http://www.microsofttranslator.com/bv.aspx?ref=Internal&from=ja&to=en&a=';
u += escape(location.href);
document.write('<a href="'+u+'" target="_self" class="toEnglish"><img src="./images/flag_en.png" style="border:0;" alt="English"></a> ');

