﻿function ShareOnFaceBook()
{
    $.post("FaceBookShare.aspx", {},
    function(data)
    {
        var siteurl = "http://www.kaletech.com/";
        var cnt = "İçerik olacak";
        var baslik = "baslik";
       var attachment = { 'name': '' + baslik + ' D4D Kış Olimpiyatları’na katıldı.', 'href': '' + siteurl + '', 'description': '' + cnt + '', 'media': [{ 'type': 'image', 'src': '' + siteurl + '/images/kayak_facebook.png', 'href': 'http://www.kaletech.com/tr-TR/'}] };
       var post_id = 0;
       FB.Connect.streamPublish("", attachment, null, null, "", "", true, null);
          }, "");
      }
  
//  function GetCities()
//  {
//      var durum = 0;
//      $.post("GetCities.aspx", {durum:durum},
//  		function(data)
//  		{
//  		    
//  		},
//		""
//	);
//}
function GetCounties(cityId)
{
    $.post("GetCities.aspx", { cityId: cityId },
  		function(data)
  		{
  		    var ddlcity = $get("DdlDistirct");
  		    var trCounty = $get("trCounty");
  		    trCounty.style.display = "";
  		    
  		},
		""
	);
}

function socialIco(id)
{
    var tt = document.getElementById("ctl00_ContentPlaceHolder1_hfTitle");
    var s_title = encodeURI("Kaletech");
    if (tt.value != "")
        s_title = tt.value;

    var s_url = encodeURI(window.location);
    var w_bar;
    var w_url = "";
    s_title = encodeURIComponent(s_title);
    s_url = encodeURIComponent(s_url);
    if (id == 0)
    {
        w_url = "http://www.facebook.com/sharer.php?t=" + s_title + "&amp;u=" + s_url;
        w_bar = "height=400, width=600, titlebar=no, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=1"
    }
    else if (id == 1)
    {
        w_url = "http://twitter.com/home?status=" + s_title + " &amp;url=" + s_url;
        w_bar = "height=400, width=800, titlebar=no, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=1"
    }
    else if (id == 2)
    {
        w_url = "http://friendfeed.com/share/bookmarklet/frame#title=" + s_title + "&amp;url=" + s_url;
        w_bar = "height=400, width=800, titlebar=no, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=1"
    }
    //    else if (id == 3) {
    //        w_url = "http://digg.com/submit?title=" + s_title + "&url=" + s_url;
    //        w_bar = "height=400, width=600, titlebar=no, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=1"
    //    }
    window.open(w_url.replace(/amp;/gi, ""), "", w_bar, w_url);
}
