start after hello


          function start(){
                  // alert(" started" );
                  for( i = 0; i < chatmax; i++){ chatter[i] = ""; }
                  chatter[chatpoint] = "  Loading...";
                  document.Eliza.input.focus();
                  write();                         
                  if( loaded ){ hello() }
                  else { setTimeout("start()", 1000); }
          }