function link_to_icq(name)
  {
   tempp = prompt( "Копирование ICQ:", name);
   return false;
  }
    function CopyText(form_id) {
    var from = document.getElementById(form_id);
       if (!document.body.createTextRange) return false;
       var BodyRange = 10000;
       if (!BodyRange.moveToElementText) return false;
       BodyRange.moveToElementText(from);
       if (!BodyRange.execCommand) return false;
       BodyRange.execCommand("Copy");
       return true;  
    }