var interval=setInterval(writeStuff,1500);
var i=0;
var thingsToWrite=["hello","how are you?","fine","you?","fine","good","bye"]; //it's a time like this I wish there was the qw "thingy" in JS!
function writeStuff() {
document.writeln(thingsToWrite[i]+"<br/>");
i++;
if(i==thingsToWrite.length)
clearInterval(interval);
}