
var MaxImageNo = 1;

function ViewTopImage(Path) {
	var ImageNo = Math.floor(Math.random()*(MaxImageNo + 1))  ;
	document.write("<img src='"+ Path +"img/topimage/"+ImageNo+".gif' border='0' />");
}

