/*
function postTwitter(){
myTitle = encodeURI('「'+document.title+'」');
myUrl = document.URL;
twitterURL = 'http://twitter.com/home/?status=' + myTitle +" | "+myUrl;
//window.open(twitterURL);
parent.window.open(twitterURL);
}
*/
function postTwitter(){
myTitle = encodeURI('「'+document.title+'」');
myUrl = document.URL;
twitterURL = 'http://twitter.com/intent/tweet/?text=' + myTitle +" | &url="+myUrl;
//window.open(twitterURL);
parent.window.open(twitterURL);
}

function postMixi(){
myUrl = document.URL;
mixiURL = 'http://mixi.jp/share.pl?u='+encodeURIComponent(myUrl)+'&k=3b1ed33696f15a1117972004e3e0ed579ef5db41';
parent.window.open(mixiURL);
}

function postFacebook(){
myTitle = encodeURI('「'+document.title+'」');
myUrl = document.URL;
facebookURL = 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(myUrl)+'&t='+myTitle+'&src=sp';
parent.window.open(facebookURL);
}

