/*//設定箇所//*/
/*
var prefWindowWidth="680";//都道府県窓width
var prefWindowHeight="660";//都道府県窓heigth
//以下、ウインドウハンドラ格納用
var prefWindow="";
//以下、open path
var prefPath='/search_area';//都道府県選択
//以下、window name
var prefWindowName='searchArea';//都道府県
//以下、テキスト挿入ボックスのID
var areaId="checkedArea";//エリアテキストID
//
var windowX = 0;
var windowY = 0;
/*////*/

/*//スクリプト//*/
function areaWindow(clickObj){
	if($("prefCodeInput").style.display=="none"){
		$("prefCodeInput").style.display="block";
		clickObj.value="閉じる";
	}else{
		clickObj.value="入力";
		$("prefCodeInput").style.display="none";
	}
//	prefWindow=window.open(prefPath,prefWindowName,'left='+windowX+',top='+windowY+',width='+prefWindowWidth+',height='+prefWindowHeight+',status=0,scrollbars=1,menubar=0,location=0,toolbar=0,resizable=1');
}

document.onmousemove = mmv;
function mmv(e){
    windowX = getMouseX(e);
    windowY = getMouseY(e);
}


function getMouseX(e){
  if(window.opera)   
          return e.clientX
  else if(document.all)   
          return document.body.scrollLeft+event.clientX
  else if(document.layers||document.getElementById)
          return e.pageX
}
function getMouseY(e){
  if(window.opera)   
          return e.clientY
  else if(document.all)   
          return document.body.scrollTop+event.clientY
  else if(document.layers||document.getElementById)
          return e.pageY
}

/*//スクリプト//*/

