Un código de prueba relativamente simple para copiar contenido al tablero <script language=javascript>
función leerTxt()
{
alerta(ventana.clipboardData.getData(texto));
}
función establecerTxt()
{
var t=document.getElementById(txt);
t.select();
window.clipboardData.setData('texto',t.createTextRange().text);
}
</script>
<nombre de entrada=valor de texto=prueba>
<tipo de entrada=valor del botón=copiar al hacer clic=setTxt()>
<tipo de entrada=valor del botón=leer al hacer clic=leerTxt()>