﻿function copyDivToClipboard() {
	if(navigator.appName == "Microsoft Internet Explorer") {
		var doc, cps, doc_cps, content;
		var baseurl, subject, href, tmp;
	
		var baseurl = document.getElementById("baseurl").value;
		var subject = document.getElementById("Subject").innerHTML;
		var tmp = document.getElementById("linkurl").value;
		var str = document.getElementById("href").value;
		var href =  tmp + str.replace("&amp;", "&");
		
		var AddImg;
	
		doc = document.body.createTextRange();
		doc.moveToElementText(document.getElementById("Content"));
		doc.select();
		doc.execCommand('copy');

		window.clipboardData.getData("Text");
		cps = document.frames["cps"].document.body;

		doc_cps = cps.createTextRange();
		doc_cps.execCommand('paste');
	
	
		if (document.getElementById("AddImg") !=undefined){
			AddImg=document.getElementById("AddImg").value;
			content = '<table width="515" cellspacing="0" cellpadding="0" border="0">';
			content += '<tr>';
			content += '<td><img src="' + AddImg + '" border="0">';
			content += '</td>';
			content += '</tr>';
			content += '</table>'; 
		}
		else{
			content=""
		}

		cps.insertAdjacentHTML("afterBegin", content);
		doc_cps.moveToElementText(cps);
		doc_cps.select();
		doc_cps.execCommand("Copy");


		content = '<br><br><table width="515" cellspacing="0" cellpadding="0" border="0">';
		content += '<tr>';
		content += '<td width="31"><a href="' + href + '" style="text-decoration:none;"><img src="' + baseurl + '/common/bg_logo.gif" border="0"></a></td>';
		content += '<td width="321" style="padding:3px 0 0 0"><a href="' + href + '" style="text-decoration:none;font-family:\'돋움\',\'돋움체\';font-weight:bold;font-size:12px;color:#444444">' + subject + '</a></td>';
		content += '<td width="78" style="padding:3px 0 0 0"><a href="' + href + '#reply" style="font-family:\'돋움\',\'돋움체\';font-weight:bold;font-size:12px;color:#B4681E">덧글보기</a></td>';
		content += '</tr>';
		content += '</table>'; 

		cps.insertAdjacentHTML("beforeEnd", content);
		doc_cps.moveToElementText(cps);
		doc_cps.select();
		doc_cps.execCommand("Copy");

		alert("퍼가기 준비 완료.\n꼴리는곳 아무데나 Ctrl+V 복사신공을 남발하세요.");
	} else {
		alert("죄송합니다.\n퍼가기 기능은 Internet Explorer에서만 사용하실 수 있습니다.");
	}	
}
