A nice little script to copy to the clipboard (I copied the text from a table cell, but of course you can copy any text). Of course, it only works in IE.
<
script>
function ClipBoard(tdObj)
{
var holdtext = document.all['holdtext'];
holdtext.innerText = tdObj.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}
</script>
.
.
.
<td><img src=“copy.gif“ onclick=“ClipBoard(this.parentElement)“> TEXT TO COPY</td>
.
.
<textarea id=“holdtext“ style=“display:none“></textarea>