﻿function tellYourFriend( id ) 
{
    void( window.open('TellYourFriend.aspx?Id=' + id,'','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=yes,copyhistory=no,width=400,height=600') );
}

function shareOnFacebook( pageUrl, pageTitle) 
{
    pageUrl = encodeURIComponent(pageUrl);
    pageTitle = encodeURIComponent(pageTitle);
    void (window.open('http://www.facebook.com/sharer.php?u=' + pageUrl + '&t=' + pageTitle, '', 'toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=no,copyhistory=no,width=626,height=436'));
    /* http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.sadtrombone.com%2F&t=Sad%20Trombone  */
}

function shareOnTwitter( pageUrl ) {

    void (window.open('http://twitter.com/home?status=' + encodeURIComponent(pageUrl)));
    /* <a href=”http://twitter.com/home?status=Currently reading http://www.test.com/post-url” title=”Click to share this post on Twitter”>Share on Twitter</a> */
}

function shareOnBlog( id, pageTitle ) 
{
    void (window.open('ShareOnBlog.aspx?id=' + id + '&pageTitle=' + encodeURIComponent(pageTitle), '', 'toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=yes,copyhistory=no,width=625,height=250,top=100,left=100'));
}