

//Copytext to clipboard- by Gennero (patrice.gennero@voila.fr)
//Submited to DynamicDrive.com
//Visit http://www.dynamicdrive.com for the original script
//Amended by Danny Mc Neill with thanks to Burt and Frank at http://www.dotdragnet.co.uk



function copyit(){
var copiedtext=""
var tempstore=""
if(document.all){    //IE5+ only
tempstore=copiedtext
document.execCommand("Copy")
copiedtext=window.clipboardData.getData("Text");
		}
}

