<!-- Original:  Matt Lewis (matt999_999@yahoo.com) -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var make_window;
function MakeWrite(string, bold, italic, speed) {
var height = 200;
var width = 300;
var win_dimensions = "height = " + eval(height + 10) + ", width = " + eval(width + 30);
make_window = window.open("blank.html", "make_window", win_dimensions);
make_window.document.open("text/html", "replace");
var i;
var timer = 0;
if(make_window.moveTo)
  make_window.moveTo(200, 150);
if(make_window.resizeBy)
  make_window.resizeBy(0, 50);
make_window.document.write("<body bgcolor=000000 text=00ff00 onBlur='self.focus()'>");
make_window.document.write("<font face=system>");
if(bold == true) make_window.document.write("<b>");
if(italic == true) make_window.document.write("<i>");
for(i = 0; i <= string.length; i++) {
timer += (Math.random() * speed);
setTimeout("make_window.document.write('" + string.charAt(i) + "');", timer);
}
timer += 3000;
setTimeout("make_window.close()", timer);
}
//  End -->