document.body.oncopy = function () { 
	setTimeout( function () { 
		var text = clipboardData.getData("text");
		if (text) { 
			text = text + "\r\nÎÄÕÂÀ´×Ô»ãÍ¨Íø:"+location.href; clipboardData.setData("text", text);
		} 
	}, 100 ) 
}


