//トップページ　ムービー写真のランダム表示

function movieLink(){

	var imglist = new Array(
      "image/movie_p01.jpg",
      "image/movie_p02.jpg",
      "image/movie_p03.jpg" );
	
   var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
   
   if(selectnum==0){
	   var output = "<a href='gallery/movie.html'><img src=" + imglist[selectnum] + "></a>";
   }else if(selectnum==1){
	   var output = "<a href='gallery/movie.html'><img src=" + imglist[selectnum] + "></a>";
   }else if(selectnum==2){
	   var output = "<a href='gallery/movie.html'><img src=" + imglist[selectnum] + "></a>";
   }   
   
   document.write(output);
   
}



//ポップアップウインドウ表示

function openWin(url,winName,pro){
	newWin = window.open(url,winName,pro);
}