function ClipBoard() 
{
holdtext.innerText = copytext.innerHTML;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}