photo = new Array();
photo[1] = "<a href='download.php'><img src='images/newbanner.jpg' alt='' width='509' height='200' border='0'></a>";


function showPhoto() {
	var ln = photo.length;
	var ry = Math.floor(Math.random()*ln);
	if (ry == 0) {
		ry = 1;
	}
	document.write(photo[ry]);
}
showPhoto()
