<!--

// Copytext to clipboard- by Gennero (patrice.gennero@voila.fr)
// Modified by Frans Eggermont - version 10/05/2004
// Copy selected text to clipboard
// Submited to DynamicDrive.com

bBool=false
var copiedtext=""
var tempstore=""

function initiatecopy() { bBool=true; }

function copyit()
{
	if (bBool)
		{
			tempstore=copiedtext
			document.execCommand("Copy")
			copiedtext=window.clipboardData.getData("Text");
			// if (tempstore!=copiedtext) { alert(copiedtext);}
			bBool=false;
		}
}

document.onselectionchange = initiatecopy
document.onmouseup = copyit

//-->

