function SendToFriend(linkPrefix,url) {
    var sUrl = url.replace('#send','');
    var sTitle = "";
    var t = document.getElementsByTagName('title')[0];
    if ( !!t.childNodes.length ) {
        sTitle = t.firstChild.data.replace('#send','');
    } else if ( t.innerHTML ) {
        sTitle = t.innerHTML.replace('#send','');
    }
    
    var oWin = window.open(linkPrefix+"email/?t=" + escape(sTitle) + "&u=" + escape(sUrl),"SendFriend","width=300,height=500") ;
    if (oWin==null || typeof(oWin)=="undefined") alert("The Send to a Friend Window was blocked by a popup blocker. Please allow EWeeklyUpdate.com to your allow list to proceed.");
}
