var copyClipboard = function(txt) {
	if(window.clipboardData) {
		window.clipboardData.setData("Text", txt);
	}
	else {
		var fc = document.getElementById("flashCopier");
		if(!fc) {
			fc = document.createElement("div");
			fc.id = "flashCopier";
			document.body.appendChild(fc);
		}
		fc.innerHTML = '<embed src="/engine/ajax/gen/clipboard.swf" FlashVars="clipboard=' +
			encodeURIComponent(txt) +
			'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
	}
	return false;
}

$(document).ready(function() {
	$('.copy_button').click(function () {
		var hhr = $(this).parent().find('textarea').html();
		hhr = hhr.replace(/(&lt;)/gi, '<');
		hhr = hhr.replace(/(&gt;)/gi, '>');
		copyClipboard(hhr);
	});
	
});
