function insertword() {
   if (document.form1.word.value == 'ココから検索が出来るよ！') {
      document.form1.word.value = "";
   }
}

//新しいウインドウを開く（問い合わせ）
function newWin(URL){
	growWin=window.open(URL,"new","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=30,height=30");
	
for(curWidth=35,curHeight=35;curWidth<600;curWidth+=11,curHeight+=9){
	growWin.resizeTo(curWidth,curHeight);
	}
	growWin.resizeTo(600,500);
}
timerID=10;
count=131;

LoadFlg = 0;

function LayScll(){
        if (LoadFlg==0) {
        	LayTop = 48;
		LoadFlg = 1;
	}else{
		LayTop = parseInt(document.getElementById("LayScll02").style.top);
	}
	
	
	if (count<132) {
		document.getElementById("LayScll02").style.top = LayTop - 3 ;
		count++;
		timerID=setTimeout("LayScll()",100) ;
	}
	if(count==15||count==30||count==45||count==60||count==75||count==90||count==105||count==120) {
		clearTimeout(timerID);
		timerID=setTimeout("StopScll()",4000) ;
	}
	if (count==132) {
		document.getElementById("LayScll02").style.top = 48 ;
		count=0;
	}
}


function StopScll(){
  LayScll();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}