﻿var internetExplorer = window.navigator.appName.toLowerCase().indexOf("microsoft");

function findElementByID(elementId) {
    if (internetExplorer != -1) return document.all[elementId];
    return document.getElementById(elementId);
}

function fbs_click() {
    u = location.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 true;
}

function fbs_clickCustoT(Link,Title) {
    u = Link;
    t = 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 true;
}
