function ShareFacebook(sURL, sContent) {
	window.open("http://www.facebook.com/sharer.php?u=" + sURL + "&t=" + sContent);
}

function ShareTwitter(sURL, sContent) {
	window.open("http://twitter.com/home?status=" + sContent + "+" + sURL);
}

function ShareMe2Day(sURL, sContent) {
	window.open("http://me2day.net/posts/new?new_post[body]=\"" + sContent + "\":" + sURL);
}

// 테스트 안됨
//function ShareYozm(sURL, sContent) {
//	window.open("http://yozm.daum.net/api/popup/prePost?prefix=" + sContent + "&link=" + sURL);
//}

function ShareCyworld(sURL, sContent) {
	window.open('http://csp.cyworld.com/bi/bi_recommend_pop.php?url=' + sURL);
}

