function copy2clipb(id) 
{

  obn=document.getElementById(id);
  clip = obn.createTextRange();
  clip.execCommand("RemoveFormat");
  clip.execCommand("Copy");
}