// WRITE RANDOM IMAGE
today = new Date();
	var bigNumber = today.getSeconds() * today.getTime() * Math.sqrt(today.getMinutes());
	var randomNum = (bigNumber % 21)+1;
	randomNum = Math.floor(randomNum);
	if (randomNum < 10) {
		randomNum="0"+randomNum;
	}
	//alert("<img height=56 width=437 src='../images/topphotos/topphoto"+randomNum+".jpg'>");
	document.write("<img height=56 width=437 src='../images/topphotos/topphoto"+randomNum+".jpg'>");