<!--

// Math.random generates a psudo random number between 0 and 1.
// Math.round rounds up or down to the closest interger.
// Multiply Math.random by the number of images in the array - 1.
// Put onload="randomCompliments()" in the body tag.
// Reserve space for the image with a spacer.gif stipulating the demensions.
// In the image tag, use the property name="anotherCompliment".

var Compliments = new Array(
	"../images/random1.gif",
	"../images/random2.gif",
	"../images/random3.gif"
	)

function randomCompliments() {
	if (document.images) {
		TossOneOut = Math.round(Math.random() * 2)
		document.anotherCompliment.src = Compliments[TossOneOut]
	}
}

//-->

