// JavaScript Document
msg = new Array(); //strings written in screen
msg[0] = "<h2><font face='Arial' color='#990000'><center><b>---== ATENÇÃO ==---</b></center></h2>";
msg[1] = "<b>Este site não tem fins lucrativos, ";
msg[2] = "<font face='Arial'> É expressamente proibido fazer download de arquivos (midis), </font> </b>";
msg[3] = "<font face='Arial'> e estão aqui para o simples uso em sala de bate-papo (Chat). </b>";
msg[4] = "<font face='Arial'> Se você deseja adquirir ou gostou de alguma música.</font> </b>";
msg[5] = "<font face='Arial'>Valorize o trabalho dos nossos artistas, compre em lojas especializadas.</font>";
msg[6] = "<br /><font face='Arial'> Grata!";
msg[7] = "<br /><font face='Arial'><b>!¤ FåÐüå ¤! Songs </b></font>";
msg[8] = "<br /><br /><br /><font face='Arial'>< <b><a href='http://br.mozdev.org/firefox/download.html' target='_blank'>Melhor Vizualizado no Mozilla Firefox</a></b> </font>";
msg[9] = "<br /><br /><br /><b></b> </font>";


text1 = ""; //the same as text2, only the last character is highlighted
text2 = ""; //current string, which will be written
count = 0; //char index in string text
count2 = 0; //number of strings

text = msg[0].split(""); //text - string written

function writetext() { //show strings above on screen
text1 = text2 + "<font color='#990000'>" + text[count] + "</font>";
text2 += text[count];
document.all["nothing"].innerHTML = text1; //where to write

if (count < text.length-1){
count++;
setTimeout('writetext()', 25);
}
else { //if this string is written, get the new string
count = 0;

if (count2 != 8) { //write 4 strings
count2++;
text2 += "<br />"; //a new line
text = eval('msg['+count2+'].split("")'); //get the new string to text
setTimeout('writetext()', 25);
}
}
}