

/* ==================================
 openWindow
================================== */
function openWindow(url, name, width, height, features, centering){
	var feature = (width ? ("width=" + width) : "") + (height ? (",height=" + height) : "");
	var featureNames = ["menubar", "toolbar", "location", "scrollbars", "status", "resizable"];
	if (features) {

	}
	return window.open (url, name, feature);
}

/* ==================================
 openMapWindow
================================== */

function openMapWindow(url){
	return openWindow (url, "RecruitAgentMapWindow", 525, 600, "000110", true);
}



<!--
  function click() {
  if (event.button==2) {
  alert('   TRUSTY　【BMW専門店】')
   }
   }
  document.onmousedown=click
// -->


function reset_confirm() {
 var c = confirm("フォームの内容を消去してもよろしいですか？");
 return c;
}
