la popup si apre, però non va la visualizzazione della textarea:

codice:
function apri_copia(ff) {
  var ww = window.open('','popup','width=765,height=500');
  ww.document.write ("<html>\n\n<head></head>\n<body>");
  ww.document.write (window.opener.document.getElementById("textarea").innerHTML);
  ww.document.write ("</body>\n</html>");
}
il textarea:

<textarea name="text" cols="73" rows="13" wrap="VIRTUAL" id="textarea">Inserire il contenuto dell'articolo quì</textarea>