function highlightmetasearch() { 
document.post.search.select(); document.post.search.focus(); 
} 
function copymetasearch() { 
highlightmetasearch(); 
textRange = document.post.search.createTextRange(); 
textRange.execCommand("RemoveFormat"); 
textRange.execCommand("Copy"); 
   }
function a2kpaste() { 
     var rng = document.selection.createRange(); 
     rng.execCommand("paste"); 
}