<script language=JavaScript>
function contents_cp()
{
if (window.event)
{
window.event.returnValue = true;
window.setTimeout('attach_kinref()', 25);
}
}
function attach_kinref()
{
if (window.clipboardData) // IE
{
// get data from clipboard
var txt = window.clipboardData.getData('Text');
// attach the source at the end of text
txt = txt + '\r\n(̉˜: http://xtx.kr)\r\n';
// set data to clibboard
var result = window.clipboardData.setData('Text', txt);
}
}
</script>