var imagep = new Array("/img/pyramids.jpg","/img/eiffle.jpg","/img/sidney.jpg");

var showl = new Array("donate2","donate2","donate2");

index = Math.floor(Math.random() * imagep.length);

if (showl[index]) {
	document.write('<a target=_top href="' + showl[index] + '"><img src="' + imagep[index] + '" align=left border=0 hspace=25 vspace=5></a>');
	}
else {
	document.write('<img src="' + imagep[index] + '" align=left border=0 hspace=25 vspace=5>');
	}
