var GetEscape = function(title)
{
	var newtitle = escape(title);
	newtitle = newtitle.replace(/'/g,"\\'");
	return newtitle;
};

//¸ÞÀÎ ÁÖ¿ä±â»çÀÇ Æ®À­ ¹öÆ°
var TweetShare = function(cid, title)
{
	 var twitter_title = unescape(title);
   var url = 'http://app.yonhapnews.co.kr/YNA/Basic/SNS/r.aspx?c=' + cid + '%26source=http://www.twitter.com';
   var enstr = encodeURIComponent(twitter_title);
   window.open('http://twitter.com/home?status='+enstr+encodeURIComponent(' ')+url);
   
};

//¸ÞÀÎ ÁÖ¿ä±â»çÀÇ ÆäÀÌ½ººÏ ¹öÆ°
var FBShare = function(cid, title)
{
var str = unescape(title);

var enstr = encodeURIComponent(str);
var url = 'http://app.yonhapnews.co.kr/YNA/Basic/SNS/r.aspx?c=' + cid + '%26source=http://www.facebook.com';

url = encodeURIComponent(url);
var strpath = "http://www.facebook.com/sharer.php?u="+url+"&t="+enstr;
window.open(strpath, 'Facebook', 'width=680, height=524 ,scrollbars=no, resizable=no'); 
};


var getTweetBtn = function(cid, title)
{
	 title = title.replace(/\\'/g,"'");
   document.write("<a href=\"http://twitter.com/share\" class=\"twitter-share-button\" data-url=\"http://app.yonhapnews.co.kr/Yna/Basic/SNS/r.aspx?c="+cid+"%26source=http://www.twitter.com\" data-text=\"" + title+"\" data-count=\"horizontal\">Tweet</a><script type=\"text/javascript\" src=\"http://platform.twitter.com/widgets.js\"></script>");
};

var getLikeBtn = function(cid)
{
 document.write("<iframe src=\"http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fapp.yonhapnews.co.kr%2FYNA%2FBasic%2FSNS%2Fr.aspx%3Fc%3D" + cid +  "%26source=http://www.facebook.com&layout=button_count&show_faces=false&width=110&action=recommend&font&colorscheme=light&height=21\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:100px; height:21px;\" allowTransparency=\"true\"></iframe>");
};
