<!--

images = new Array(4);

images[0] = "<img src='1.jpg' width='450' height='338'>";
images[1] = "<img src='2.jpg' width='450' height='338'>";
images[2] = "<img src='3.jpg' width='450' height='338'>";
images[3] = "<img src='4.jpg' width='450' height='338'>";

index = Math.floor(Math.random() * images.length);

document.write("<DL>\n");
document.write("<DT>" + "" + images[index] + "\n");

// -->
