function showTopRightPicture(){

	var arraySize = 5;
	var randomNumber=Math.floor(Math.random()*arraySize);

	imageLink = new Array(arraySize);
	imageLink[0] = "http://www.makelogic.com/images/topRightImage01.gif";
	imageLink[1] = "http://www.makelogic.com/images/topRightImage02.gif";
	imageLink[2] = "http://www.makelogic.com/images/topRightImage03.gif";
	imageLink[3] = "http://www.makelogic.com/images/topRightImage04.gif";
	imageLink[4] = "http://www.makelogic.com/images/topRightImage05.gif";

	pageLink = new Array(arraySize);
	pageLink[0]= "http://www.makelogic.com/microGraphs/DotNet/MGDotNetHome.htm";
	pageLink[1]= "http://www.makelogic.com/microGraphs/DotNet/MGDotNetHome.htm";
	pageLink[2]= "http://www.makelogic.com/microGraphs/DotNet/MGDotNetHome.htm";
	pageLink[3]= "http://www.makelogic.com/microGraphs/DotNet/MGDotNetHome.htm";
	pageLink[4]= "http://www.makelogic.com/microGraphs/DotNet/MGDotNetHome.htm";

	htmlCode = "<a href='"+pageLink[randomNumber]+"'> <img src='"+imageLink[randomNumber]+"' border=\"0\"/></a>";
	
	topRightPictureDivi = document.getElementById("topRightPictureDiv");
	topRightPictureDivi.innerHTML = htmlCode;
	
}