function openShare(obj,source) {
    if(!obj) {
        pageTitle = document.title;
        pageDescription = "";
        pageURL = document.URL;
    }else {
    //THESE VALUES ARE SET PER BUTTON AND PASSED INTO THE FUNCTION
        pageTitle = obj.title;
        pageDescription = obj.desc;
        pageURL = obj.deeplink;
    }

    //SET DEFAULTS HERE TO BE USED FOR ALL SHARE BUTTONS ON THE PAGE
    pageLink = "Learn More!"
    imgLink = "";
    imgHeight = 0;
    imgWidth = 0;
    customText = 'Check this out: ';
    appContextPath = '/sharing';
    channelName = 'That\'s Fit';
    channelImg = 'http://parentdish.sandbox.loveandblueberries.com/media/145x35_thatsfit_logo.png';
    omniChannel = "us.walletpop";
    omnipfxID = "uwp";
    omniaccount = "aolwbwpop,aolsvc";
    showSend2Cell = 'true';

    if (typeof sourceLink == 'object') {
        for(i=0;i<sourceList.length;i++) {
            if (source == sourceList[i]) {
                showSend2Cell = 'true';
            }
        }
    }

    shareWin = window.open('http://gblsharing.app.aol.com/sharing/share.html?pt='+pageTitle+'&pd='+pageDescription+'&pu='+pageURL+'&pl='+pageLink+'&il='+imgLink+'&iw='+imgWidth+'&ih='+imgHeight+'&ct='+customText+'&cp='+appContextPath+'&s2c='+showSend2Cell+'&cn='+channelName+'&ci='+channelImg+'&oc='+omniChannel+'&opfx='+omnipfxID+'&oa='+omniaccount,'dow','titlebar=no,menubar=no,toolbar=no,scrollbars=no,resizable=no,width=785,height=430');
}
