function copy(textSource) {
Copied = textSource.createTextRange();
Copied.execCommand("RemoveFormat");
Copied.execCommand("Copy");
}
