// JavaScript Document

function copyText(src){
	Copied = document.getElementById(src).createTextRange();
	Copied.execCommand("Copy");
}