<html><BODY><script>
function CopyOLEObj(obj){
if (!obj.tagName || obj.tagName == '') return false;
if (typeof obj.contentEditable == 'undefined') return false;
if (!document.body.createControlRange) return false;
var ctrl = document.body.createControlRange();
obj.contentEditable = true;
ctrl.addElement(obj);
ctrl.execCommand('Copy');
obj.contentEditable = false;
return true;
}
function CopyToQQ(sID){
if (CopyOLEObj(document.getElementById(sID))) {return "1";} else {return "0";}
}
</script>
<img src='iseep2qq' name=iseediy id=iseediy></body></html>