//#¼Ò¼È ³×Æ®¿öÅ© ½ºÅ©¸³Æ®
function sendTwitter(title,url) {
	var wp = window.open("http://twitter.com/home?status=" + encodeURIComponent(title) + " " + encodeURIComponent(url), 'twitter', '');
	if ( wp ) {
		wp.focus();
	}
}
function sendFaceBook(title,url) {
	var wp = window.open("http://m.facebook.com/sharer.php?u=" + encodeURIComponent(url) + "&t=" + encodeURIComponent(title), 'facebook', '');
	if ( wp ) {
	  wp.focus();
	}
}
function sendMe2Day(title,url,tag) {
	title = title+" "+url;
	var wp = window.open("http://me2day.net/n/posts/new?new_post[body]=" + encodeURIComponent(title) + "&new_post[tags]=" + encodeURIComponent(tag), 'me2Day', '');
	if ( wp ) {
	  wp.focus();
	}
} 
function sendYozm(title,url) {
	var wp = window.open("http://yozm.daum.net/api/popup/prePost?link=" + encodeURIComponent(url) + "&prefix=" + encodeURIComponent(title));
	if ( wp ) {
	  wp.focus();
	}
}
function goCyWorld(url,title,thumnail,summary) {
	var a = window.open("http://csp.cyworld.com/bi/bi_recommend_pop.php?url="+encodeURIComponent(url)+"&title="+encodeURIComponent(title)+"&thumbnail="+encodeURIComponent(thumnail)+"&summary="+encodeURIComponent(summary), "cyworld", "width=400,height=364");
	if ( a ) {
		a.focus();
	}
}
function copy_clip(strData) {
	clipboardData.setData("Text", strData);
	alert("º¹»ç°¡ µÇ¾ú½À´Ï´Ù. ÆÛ°¥°÷À¸·Î ÀÌµ¿ÇÏ¿© ºÙ¿©³Ö±â ÇØÁÖ¼¼¿ä.");
}
