//***************************
//ランダムイメージ表示用プログラム
//***************************

<!--
var rndMax = 5;
function rndImage(){
	imgNo = Math.floor(Math.random()*(rndMax))+1;
	if (imgNo < 1){
		imgNo = 001;
	}else if (imgNo > rndMax){
		imgNo = rndMax;
	}
	imgNoTxt = new String(imgNo);
	while(imgNoTxt.length < 3){
		imgNoTxt = "0"+imgNoTxt;
	}
	document.write('<img src="http://eyenet.gr.jp/central/imge_random/'+imgNoTxt+'.gif" width="750" height="145" alt="FUTURE OF OUTSOURCING">');
}

//-->