/******************************************************/
/*********** © Daniel Palacio 10-02-2004***************/
/***********  http://www.cara-cola.com  ***************/
/******************************************************/

//Palabras para escribir
palabras = new Array("animación","preproducción","diseño web","ilustración","comic","flash",
	"publicidad","layout","storyboard");

var maxPal = palabras.length;

function randomPal() {
	pos = Math.floor(Math.random()*maxPal);
	pal = palabras[pos];
	return pal;
}

function fondoTXT(maxW,maxH) {
	for (i=1;i<=maxH;i++) {
		txt = randomPal();
		linea:
		while (txt.length<maxW) {
			txt2 = txt + "·" + randomPal();
			if (txt2.length<maxW) {txt = txt2;} else {break linea}
		}
		document.write(txt + "<br>");
	}
}
	