 
	function getFlashMovieObject(movieName)
	{
	  if (window.document[movieName]) 
	  {
		  return window.document[movieName];
	  }
	  if (navigator.appName.indexOf("Microsoft Internet")==-1)
	  {
		if (document.embeds && document.embeds[movieName])
		  return document.embeds[movieName]; 
	  }
	  else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
	  {
		return document.getElementById(movieName);
	  }
	}
	
	 function shareURL(nod) {

 
            var title = encodeURI(document.title);
            var spot = ""; // encodeURI(document.getElementById('hiddenSpot').value);
            var url = encodeURI(document.location.href);
            var options = "height=700,width=800,titlebar=no,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=1";
            var mURL = "";
			 
            if (nod == "facebook") {
                mURL = "http://www.facebook.com/sharer.php?u=" + url + "&title=" + title;
            }
            if (nod == "google") {
                mURL = "http://www.google.com/bookmarks/mark?op=edit&bkmk=" + url + "&title=" + title;
            }
            if (nod == "yahoo") {
                mURL = "http://myweb2.search.yahoo.com/myresults/bookmarklet?&u=" + url + "&t=" + title;
            }
            if (nod == "mixx") {
                mURL = "http://www.mixx.com/submit/story?title=" + title + "&page_url=" + url + "&partner=Milliyet&description=";
            }
            if (nod == "digg") {
                mURL = "http://digg.com/submit?url=" + url + "&title=" + title;
            }
            if (nod == "stumble") {
                mURL = "http://www.stumbleupon.com/submit?url=" + url + "&title=" + title;
            }
            if (nod == "delicious") {
                mURL = "http://del.icio.us/post?url=" + url + "&title=" + title;
            }
            if (nod == "reddit") {
                mURL = "http://reddit.com/submit?url=" + url + "&title=" + title;
            }
            if (nod == "twshot")
            { mURL = "http://twshot.com/share.aspx?url=" + url + "&title=" + title; }
            if (nod == "myspace") {
                mURL = "http://www.myspace.com/Modules/PostTo/Pages/?l=2&u=" + url + "&t=" + title + "&c=" + title;
            }
            if (nod == "friendfeed") {
                mURL = "http://friendfeed.com/share/bookmarklet/frame#title=" + title + " " + url + "&url=" + url;
            }

            if (nod == "twitter") {
                mURL = 'http://twitter.com/home?status=' + title + ' : ' +  url ;
                options = "height=700,width=800,titlebar=no,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=1";

            }



 
            window.open(mURL, 'dsada' + new Date().getTime(), options);
            
            //window.open(mURL , "_blank", options);


        } 

