<!-- Telex type 2 kurt.grigg@virgin.net

fontfamily='verdana';
fontcolour='#000000';
cursorcolour='#ffffff';
delaybetweenmessages=50;//This alters if typespeed is altered!!!
typespeed=50;
containerwidth=100;//Must be big enough to accomadate the longest message!!!
containerheight=30;

msg=new Array()
msg[0]="kyawjerry@";
msg[1]="yahoo "; 
msg[2]="hotmail "; 
msg[3]="email me"; 
msg[4]="mke frd";
msg[5]="358 0549";
msg[6]="dat my no.";
msg[7]="call me";
msg[8]="u got some buzs";     


//Alter nothing past here!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ns=(document.layers);
ie=(document.all);
themessage='';
if (ns)themessage="<layer name=Tns width="+containerwidth+" height="+containerheight+">&nbsp;</layer>";
if (ie){
themessage="<div id='Tie' style='position:relative;"
+"width:"+containerwidth+";height:"+containerheight+"'></div>";
}
timer=0;
next=0;
pos=0;
a='/';
b='\\';
c='';
cursor=a;
fc1="<font face="+fontfamily+" font color="+fontcolour+">";
fc2="<font face="+fontfamily+" font color="+cursorcolour+">";
function Type(){
if (timer == 0) pos++;
if (msg[next].substring(pos-1,pos) == " ") pos++;
if (pos > msg[next].length) {timer++}  
if (timer > delaybetweenmessages) {next++;pos=0;timer=0;cursor=a} 
if (next == msg.length) next=0;
if (timer != 0) {cursor=c} 
if (cursor==a){cursor=b}
else if (cursor==b){cursor=a}
text=msg[next].substring(0,pos);
if (ns){
document.layers.Tns.document.open();
document.layers.Tns.document.write(fc1+''+text+'</font>'+fc2+''+cursor+'</font><br>');
document.layers.Tns.document.close();
}
if (ie){
Tie.innerHTML=fc1+''+text+'</font>'+fc2+''+cursor+'</font>';
}
setTimeout('Type()',typespeed);
}
// -->
