copyIt = function(text2copy) {
    if (window.clipboardData) {
        window.clipboardData.setData("Text",text2copy);
        return;
    }
    var flash_el = null;
    if (arguments.length == 2) {
        if (typeof $(arguments[1]) == "object") {
            flash_el = $(arguments[1]);
        }
    }
    if (!flash_el) {
        var div_holder = document.createElement('div');
        div_holder.id = "flash-copier";
        document.body.appendChild(div_holder);
        flash_el = $("flash-copier");
    }
    flash_el.innerHTML = '<embed src="'
        + 'http:\/\/www.xdanger.com'
        + '\/images\/clipboard.swf" FlashVars="clipboard='
        + encodeURI(text2copy).replace(/\+/g, "%2B")
        + '" width="0" height="0" type="application\/x-shockwave-flash"><\/embed>';
}