﻿function fbs_click_html(link)
{
    var u;
    if (link.href == "")
    {
        u=location.href;
    }
    else
    {
        u=link.href;
    }
    t=document.title;
    window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
    return false;
}

function fbs_click(link)
{
    var u;
    if (link == "")
    {
        u=location.href;
    }
    else
    {
        u=link;
    }
    t=document.title;
    window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');    
}