var currentdate = 0;
var core = 0;

function StringArray (n) {
	this.length = n;
	for (var i =1; i <= n; i++) {
		this[i] = ' ';

	}
}

image = new StringArray(3);
image[0] = 'myFlash0';
image[1] = 'myFlash1';
image[2] = 'myFlash2';

var ran = 60/image.length;

function ranimage() {
	var core = Math.round(2*Math.random());
	return(image[core]);
}

// document.write('<img src="/images/' +ranimage()+ '" alt="" title="" class="montage">');

document.write('<span id="'+ranimage()+'">This page requires you to have Flash Player installed on your computer.</span></div>');