// JavaScript Document

function writeDown(text) { 
 for(i=0; i < text.length; i++) 
  document.write(text.charAt(i) + "<br />" ) 
}