	function Copy_RSSURL(RSSurl, title) {
		window.clipboardData.setData("Text", RSSurl);
		alert(title + ' ÁÖ¼Ò°¡ º¹»çµÇ¾ú½À´Ï´Ù.\n»ç¿ëÇÏ½Ã´Â RSS ¸®´õ±â¿¡ µî·ÏÇØÁÖ¼¼¿ä.');
	}



/*
function Copy_Content(url,img,title) {
		window.clipboardData.setData("Text", "<a href=\""+ url +"\"><img src=\""+ img +"\" border=\"0\"></a>");
		alert(title);
	}
*/

/* 20090109 Àç¼ºÃß°¡ (htmlÀÇ Æ¯Á¤ºÎºÐ(Copy_Content) Ä«ÇÇÇÏ±â)
	¿¹) 
		<div style="display:none">
			<table id="Copy_Content" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
				<tr>
					<td>
						<a href="http://www.playdb.co.kr/Event/Event_Detail.asp?sReqNo=3&sReqSeq=118"><img src="http://ticketimage.interpark.com/TicketImage/playdb/event/hottalk/090107_zannaevent.jpg" border="0"></a>
					</td>
			  </tr>
			</table>
		</div>
*/
	
function Copy_Content(title,copy_name){	
	var oControlRange = document.body.createTextRange();	 
   oControlRange.moveToElementText(eval("document.all."+ copy_name));	
   oControlRange.execCommand("copy");
   alert(title);
	
}