<!--
function Is() {
    var agent = navigator.userAgent.toLowerCase();
    this.major = parseInt(navigator.appVersion);
    this.minor = parseFloat(navigator.appVersion);
    this.ns  = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)));
    this.ns2 = (this.ns && (this.major == 2));
    this.ns3 = (this.ns && (this.major == 3));
    this.ns4b = (this.ns && (this.major == 4) && (this.minor <= 4.03));
    this.ns4 = (this.ns && (this.major >= 4));
    this.ie   = (agent.indexOf("msie") != -1);
    this.ie3  = (this.ie && (this.major == 2));
    this.ie4  = (this.ie && (this.major >= 4));
    this.op3 = (agent.indexOf("opera") != -1);
}

var is = new Is()

if(is.ns4) {
    doc = "document";
    sty = "";
    htm = ".document"
} else if(is.ie4) {
    doc = "document.all";
    sty = ".style";
    htm = ""
}

var text1 = "", text2 = "", count = 0, count2=0;
msg = new Array();
msg[0] = "... sistema operativo de 32-bits basado en la fuente Fedora y es el más seguro producto de TerraSoft hasta la fecha. Ofrece un instalador gráfico intuitivo, un KDE unificado y el escritorio GNOME, por supuesto con soporte para las PowerMacs G5. El instalador del Yellow Dog está basado en el ANACONDA el cual provee niveles automatizados, detección de hardware, ayuda en pantalla, personalización, múltiples métodos de instalación, creación de particiones, configuraciones de puerto, etc...";
msg[1] = " "
msg[2] = " ";
msg[3] = " ";
msg[4] = " "
msg[5] = " "
msg[6] = " "
text = msg[0].split("");

function writetext(){

	text1 ='<p>'+text2 + '<b style="color:#3366ff;">'+text[count]+'</b></p>';

	text2 += text[count];

	fillHTML = eval(doc + '["nothing"]' + htm);

    if(is.ns4) {
		fillHTML.write(text1);
		fillHTML.close();
	} else {
		fillHTML.innerHTML = text1;
	}

	if (!(count >= text.length-1)){
		count+=1;
		setTimeout('writetext()',1);
	}
	else{
		count=0;
		text2+='<p>'
		if (count2!=6){
			count2++
			text = eval('msg['+count2+'].split("")');
			setTimeout('writetext()',1);
		}
	}
}

//-->