function ClipBoard( id )
{
text = document.getElementById( id );
hold = document.getElementById('holdtext');
hold.innerText = text.innerText;
Copied = hold.createTextRange();
Copied.execCommand("Copy");
}
