﻿// social share button

var pageTitle = document.title;
var encodePageTitle = encodeURIComponent(pageTitle);
var pageUrl = encodeURIComponent(document.URL);


// Google+1 ボタン用スクリプト
// ------------------------------------------------------------------------------------
window.___gcfg = {lang: 'ja'};
(function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();



/*------------------------------------------------------------------*/

document.write('<div class="socialShare">');
document.write('<h2><img src="/shared/images/common/title_socialShare_01.gif" alt="ブックマークレット" width="154" height="11" /></h2>');
document.write('<ul>');
document.write('<li class="twitter"><a href="http://twitter.com/share?text='+encodePageTitle+'&amp;url='+pageUrl+'" target="_blank"><img src="/shared/images/common/btn_socialShare_twitter_01.gif" alt="" width="20" height="20" /></a></li>');
document.write('<li class="plusone"><g:plusone size="medium" annotation="none"></g:plusone></li>');
document.write('<li class="facebook"><iframe src="http://www.facebook.com/plugins/like.php?href='+pageUrl+'&amp;send=false&amp;layout=button_count&amp;width=115&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:115px; height:21px;" allowTransparency="true"></iframe></li>');
document.write('</ul>');
document.write('</div>');
