<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

cuantasimagenes = 6;

// Specify the first and last part of the image tag.

primero = '<img src="imagenes/fotos';
ultimo = '.JPG" height="150" width="100%">';

function printImage() {
var r = Math.ceil(Math.random() * cuantasimagenes);
document.write(primero + r + ultimo);
}
//-->