// JavaScript Document
document.body.oncopy = function () { 
	setTimeout( function () { 
		var text = clipboardData.getData("text");
		if (text) { 
			text = text + "\r\n本文来自:耶稣福音家园(http://ye-su.cn) 原文参考："+location.href; clipboardData.setData("text", text);
		} 
	}, 100 ) 
}
