﻿// JScript File
// Use to copy to clipboard 
function copyToClipboard(textToCopy) {

	// Check the IE way
	if (window.clipboardData) {
		window.clipboardData.setData("Text",textToCopy);
	} 
	else {

		// Create a div with an embedded flash file to bypass security issues
		var flashcopier = 'flashcopier';

		if(!document.getElementById(flashcopier)) {
			var divholder = document.createElement('div');

			divholder.id = flashcopier;
			document.body.appendChild(divholder);

		}

		// Clear the div content, then embed the flash file
		document.getElementById(flashcopier).innerHTML = '';
		var divinfo = '<embed src="/FlashTool/_clipboard.swf" FlashVars="clipboard='+escape(textToCopy)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';

		// Post the text to copy
		document.getElementById(flashcopier).innerHTML = divinfo;
	}
	
	return true;					
}
