<!--
	var now = new Date();
	var seed = now.getTime() % 0xffffffff;

	function rand(n)
	{
		seed = (0x015a4e35 * seed) % 0xfffffff;
		return (seed >> 16) % n;
	}
	
	function GetTopRightImage()
	{
		document.write(pics[rand(6)]);
	}

	var pics = new Array(6);
	pics[0] = "<img src='images/photos/topright/koi1.jpg' width='200' height='75'>";
	pics[1] = "<img src='images/photos/topright/koi2.jpg' width='200' height='75'>";
	pics[2] = "<img src='images/photos/topright/koi3.jpg' width='200' height='75'>";
	pics[3] = "<img src='images/photos/topright/koi4.jpg' width='200' height='75'>";
	pics[4] = "<img src='images/photos/topright/koi5.jpg' width='200' height='75'>";
	pics[5] = "<img src='images/photos/topright/koi6.jpg' width='200' height='75'>";

-->
