<!--
// The Array Function 
function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}
// This is where the array of text/images/sounds is created.
images = new makeArray(5);

images[0] = "<img src='website_archivos/splash1.jpg' border='0'>";

images[1] = "<img src='website_archivos/splash2.jpg' border='0'>";

images[2] = "<img src='website_archivos/splash3.jpg' border='0'>";

images[3] = "<img src='website_archivos/splash4.jpg' border='0'>";

images[4] = "<img src='website_archivos/splash5.jpg' border='0'>";


// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
} 
var now = new Date()
var seed = now.getTime() % 0xffffffff
// -->