/*
 *  Copyright © 2008 Fair Oaks Labs, Inc.
 *  All rights reserved.
 */
function ClipboardTools(A){this._flashDiv=undefined;this.swfPathname=A}ClipboardTools.prototype._MakeFlashDiv=function(A){var C,B;C=document.createElement("DIV");B=C.appendChild(document.createElement("EMBED"));B.setAttribute("src",this.swfPathname);B.setAttribute("FlashVars","clipboard="+encodeURIComponent(A));B.setAttribute("width","0");B.setAttribute("height","0");B.setAttribute("type","application/x-shockwave-flash");return C};ClipboardTools.prototype.Copy=function(A){if(window.clipboardData){window.clipboardData.setData("Text",A)}else{if(this._flashDiv){document.body.removeChild(this._flashDiv);this._flashDiv=undefined}this._flashDiv=this._MakeFlashDiv(A);document.body.appendChild(this._flashDiv)}};