<!--

// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

function image() {
};

image = new image();
number = 0;

// imageArray
image[number++] = "<a href='html/randomreel_play.html'><img src='imag/play_peli.jpg' border='0' /></a>"
image[number++] = "<a href='html/randomreel_nano.html'><img src='imag/nano_peli.jpg' border='0' /></a>"
image[number++] = "<a href='html/randomreel_crying.html'><img src='imag/crying_peli.jpg' border='0' /></a>"
image[number++] = "<a href='html/randomreel_obreras.html'><img src='imag/obreras_peli.jpg' border='0' /></a>"
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(image[increment]);

//-->