﻿//http://www.rodsdot.com/ee/cross_browser_clipboard_copy_with_pop_over_message.asp
function copyToClipboard(text) {
    if (window.clipboardData) {
        window.clipboardData.setData("Text", text);
    } else {
        var so = new SWFObject('_clipboard.swf', 'copy_contents', '0', '0', '4');
        so.addVariable('clipboard', escape(text));
        so.useExpressInstall('expressinstall.swf');
        so.write('flashcontent');
    }
}
