	function scrapOk(boardId){
	    
	    var doc = scrap_frame.document.body.createTextRange();
	    doc.moveToElementText(scrap_frame.document.all("scrap_area"));	    
	    doc.select();
	    doc.execCommand('copy');
		alert("½ºÅ©·¦ µÇ¾ú½À´Ï´Ù.ºÙ¿©³Ö±â (Ctrl+V)¸¦ ÀÌ¿ëÇÏ½Ã¸é µË´Ï´Ù.");	
		
		updateScrapHit(boardId);    
	}
	
	function updateScrapHit(boardId) {
		handle_frame.location.href = "update_scrap_hit.jsp?boardid=" + boardId;
	}
	
