//***********************
//ランダムイメージ表示用プログラム
//***********************

<!--
var rndMax = 4;

function rndImage(){
	imgNo = Math.floor(Math.random()*(rndMax))+1;
	if (imgNo < 1){
		imgNo = 1;
	}else if (imgNo > rndMax){
		imgNo = rndMax;
	}
	imgNoTxt = new String(imgNo);
	while(imgNoTxt.length < 3){
		imgNoTxt = "0"+imgNoTxt;
	}
	document.write('<img src="imge_random/'+imgNoTxt+'.gif" alt="" width="275" height="188">');
}
//-->