ragazzi se io ho questo codice html:

Codice PHP:
<html>
<
head>
    <
script type="text/javascript" src="alt.js"></script>
</head>
<body>
             <form name="change">
                   <textarea class="test" name="descript" wrap="virtual">
             </form>
</body>
</html> 

e questa pagina js

Codice PHP:
/* This script and many more are available free online at
The JavaScript Source!! [url]http://javascript.internet.com[/url]
Created by: Sandeep Gangadharan | [url]http://sivamdesign.com/scripts/[/url] */
var text 0;

var 
message=new Array();
  
message[0] = "Benvenuti su HTML.it"
  
message[1] = "Sezione Javascript"
  
message[2] = "Scaricate centinaia di script"
  
message[3] = "Arrivederci..."

function changeText() {
  if (
message.length 0) {
    
document.change.descript.value=message[text];
    
text++;
  }
  if (
text == 4) {text 0; }  // change the # 4 at the left to the maximum # of message lines you want included
    
window.setTimeout("changeText()"3500); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed

// Multiple onload function created by: Simon Willison
// [url]http://simon.incutio.com/archive/2004/05/26/addLoadEvent[/url]
function addLoadEvent(func) {
  var 
oldonload window.onload;
  if (
typeof window.onload != 'function') {
    
window.onload func;
  } else {
    
window.onload = function() {
      if (
oldonload) {
        
oldonload();
      }
      
func();
    }
  }
}

addLoadEvent(function() {
  
changeText();
}); 
Questo script così com'è mi stampa a video delle frasi NON random dopo un tot di secondi...però me le stampa dentro una textarea, io vorrei che comparissero come un normale testo.
Come si fa a richiamare quella funzione al di fuori della text area? grazie per l'aiuto!