");
matrix_window.document.write("");
if(bold == true) matrix_window.document.write("");
if(italic == true) matrix_window.document.write("");
for(i = 0; i <= string.length; i++) {
timer += (Math.random() * speed);
setTimeout("matrix_window.document.write('" + string.charAt(i) + "');", timer);
}
timer += 2000;
setTimeout("matrix_window.close()", timer);
}
var messages = new Array("Do not be alarmed...we are searching...for the one...nope not you", "checking system parameters......index located......gcell identification comfirmed....welcome visitor to ", "temporary malfunction.....unidentified presence....attempting reset proce***** I am gcell, I apologise for this interuption, no harm will come to you or your system. I am scanning to identify if you are one.....end message*****malfunction repaired - returning to operating environment");
function GetRndIndex() {
return (parseInt(Math.random() * messages.length));
}
function WriteRndMsg(bold, italic, speed) {
MatrixWrite(messages[GetRndIndex()], bold, italic, speed);
}