/*
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=642879ba4d473152eb0a8cd84ec2add2f0fd7519';
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);
}

