function shareThis(destination,url,title){
//	var title;
	var siteURL = "http://www.farkinsecimindir.com";
	var targetURL = "";
	var thisUrl = url;

	if (!title) {title = "Uykuya Hayır - Beck's";}
	if (!thisUrl) {thisUrl = siteURL;}
	//var thisUrl = siteURL;

	switch (destination){
		case "delicious":
			targetURL = "http://del.icio.us/post?url=" + thisUrl + "&title="+ title;
		break;
		case "digg":
			targetURL = "http://digg.com/submit?url=" + thisUrl + "&title=" + title;
		break;
		case "myspace":
			targetURL = "http://www.myspace.com/Modules/PostTo/Pages/?c="+ thisUrl + "&t=" + title;
		break;
		case "facebook":
			targetURL = "http://www.facebook.com/sharer.php?u=" + escape(thisUrl) + "&t=" + title;
		break;
		case "googlebookmarks":
			targetURL = "http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=" + thisUrl +"&title=" + title;
		break;
		case "yahoomyweb":
			targetURL = "http://myweb2.search.yahoo.com/myresults/bookmarklet?u=" + thisUrl + "&t=" + title;
		break;
		case "stumbleupon":
			targetURL = "http://www.stumbleupon.com/refer.php?url=" + thisUrl + "&title=" + title;
		break;
		case "reddit":
			targetURL = "http://reddit.com/submit?url=" + thisUrl + "&title=" + title;
		break;
		case "newsvine":
			 targetURL = "http://www.newsvine.com/_tools/seed&save?u=" + thisUrl + "&h=" + title;
		break;
		case "livebookmarks":
			targetURL = "https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url=" + thisUrl + "&title="+ title;
		break;
		case "technorati":
			targetURL = "http://www.technorati.com/faves?add=" + thisUrl;
		break;
		case "twitter":
			targetURL = "http://twitter.com?status=" + title + " " + thisUrl;
		break;
		case "yahoobookmarks":
			targetURL = "http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&u=" + thisUrl + "&title="+ title;
		break;
		case "myaol":
			targetURL = "http://favorites.my.aol.com/ffclient/webroot/0.4.1/src/html/addBookmarkDialog.html?url="+ thisUrl + "&title="+ title;
		break;
		case "friendfeed":
			targetURL = "http://friendfeed.com/?url=" + thisUrl + "&title="+ title;
		break;
		case "tumblr":
			targetURL = "http://www.tumblr.com/new/link?post[one]=" + title + "&post[two]=" + escape(thisUrl) + "&post[three]=";
		case "buzz":
			targetURL = "http://buzz.yahoo.com/submit";
		break;
		
	}
	if(targetURL != ""){
		window.open(targetURL,"_blank");
	}	
}