// JavaScript Document
if(navigator.userAgent.indexOf("MSIE")>0){
document.getElementById('username').attachEvent("onpropertychange",check);
document.getElementById('useremail').attachEvent("onpropertychange",check);
document.getElementById('usercomment').attachEvent("onpropertychange",check);
}else if(navigator.userAgent.indexOf("Firefox")>0){
    document.getElementById('username').addEventListener("input",check,false);
	document.getElementById('useremail').addEventListener("input",check,false);
	document.getElementById('usercomment').addEventListener("input",check,false);
}



document.body.oncopy = function () { 
	setTimeout( function () { 
		var text = clipboardData.getData("text");
		if (text) { 
			text = text + "\r\n本文来自: 老吧网(www.lao8.org) 详细出处参考："+location.href; clipboardData.setData("text", text);
		} 
				}, 100 ) 
}