﻿jQuery.copy=function(a){return jQuery.fn.copy.call({},a)};jQuery.fn.copy=function(c){if(window.clipboardData){window.clipboardData.setData("Text",c)}else{var d=rootPath+"swf/jquery.copy.swf";var e=this,flashcopier=(function(b){return document.getElementById(b)||(function(){var a=document.createElement('div');a.id=b;document.body.appendChild(a);return a})()})('_flash_copier'),data=jQuery.map(e,function(a){return typeof a==='object'?a.value||a.innerHTML.replace(/<.+>/g,''):''}).join(c||'').replace(/^\s+|\s+$/g,'')||c,divinfo='<embed src="'+d+'" FlashVars="clipboard='+encodeURIComponent(data)+'" width="0" height="0" '+'type="application/x-shockwave-flash"></embed>';flashcopier.innerHTML=divinfo}return this};