/*______________________________________

	JavaScript file
	[ramdom image] 07.2005 
______________________________________*/

function Disp_randomeimg(){
	myLine = 36;		//ランダム表示する写真の数
	myLineR = 36;		//右側ランダム表示する写真の数
	
	DipPhoto01 = Math.floor(Math.random()*myLine);
	DipPhoto02 = Math.floor(Math.random()*myLineR);
	
	while (DipPhoto02 == DipPhoto01) {
		DipPhoto02 = Math.floor(Math.random()*myLine);
	}
	
	//数値の頭に0をつける
	if (String(DipPhoto01).length == 1) {
	DipPhoto01 = "0" + String(DipPhoto01);
	}
	if (String(DipPhoto02).length == 1) {
	DipPhoto02 = "0" + String(DipPhoto02);
	}
	
	document.write('<img src="img/index/ph' + DipPhoto01 + '.jpg" width="380" height="150" alt=""><img src="img/index/ph' + DipPhoto02 + '.jpg" width="380" height="150" alt="">');
}