/*
--------------------------------------------------
( 緯度, 経度 )の値を取得するGmapsを開く 
--------------------------------------------------*/
function openGMaps() {
	window.open("getLatLng.html","opendGMaps","toolbar=no,location=no,scrollbars=yes,resizable=yes,width=580,height=710");
}

/*
--------------------------------------------------
( 緯度, 経度 )の値をデータ入力ページにコピーする 
--------------------------------------------------*/
function setValue(val1,val2) {

	var setGMaps_lat = val1;
	var setGMaps_lng = val2;

	opener.document.dataentry.gmap_lat.value = setGMaps_lat;
	opener.document.dataentry.gmap_lng.value = setGMaps_lng;

}

function showMotion(myself) {
	window.open(myself,"motion","width=376,height=668");
}
