// JavaScript Document
function share_fb_click() {
    var u = document.location.href;
    var t=document.title;
    window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'share_fb','toolbar=0,status=0,width=626,height=436');
    return false;
}
 
function share_twitter_click() {
    var u = document.location.href;
    var t=document.title;
    window.open('http://twitter.com/home?status='+encodeURIComponent(t)+'+'+encodeURIComponent(u),'_blank');
    return false;
}
 

