function Paste(textArea) {
textArea.createTextRange().execCommand("Paste");
textArea.focus();
}
function Copy(textArea) {
textArea.createTextRange().execCommand("Copy");
textArea.focus();
}
function Cut(textArea) {
textArea.createTextRange().execCommand("Cut");
textArea.focus();
}
function Clear(textArea) {
textArea.createTextRange().execCommand("Delete");
textArea.focus();
}	
