﻿function share(baslik, pageUrl, shareLoc) {
    baslik = baslik;

    var locUrls = {
        'twitter': 'http://www.twitter.com/home?status=' + pageUrl,
        'facebook': 'http://www.facebook.com/sharer.php?u=' + escape(pageUrl) + '&t=' + baslik,
        'friendfeed': 'http://friendfeed.com/?title=' + baslik + '&url=' + escape(pageUrl),
        'digg': 'http://www.digg.com/submit?phase=2&url=' + escape(pageUrl) + '&title=' + baslik,
        'buzla': 'http://www.buzla.com/share/?u=' + escape(pageUrl),
        'skydrive': 'https://skydrive.live.com/sharefavorite.aspx/.SharedFavorites??&mkt=en-us&url=' + escape(pageUrl) + '&title=' + baslik
    }


    window.open(locUrls[shareLoc], 'shareWin', 'width=800, height=600, menubar=0, resizable=1, scrollbars=1');
}
