//グローバルナビゲーション
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		hbt01_over = newImage("images/hbt01-over.jpg");
		hbt02_over = newImage("images/hbt02-over.jpg");
		hbt03_over = newImage("images/hbt03-over.jpg");
		hbt04_over = newImage("images/hbt04-over.jpg");
		hbt05_over = newImage("images/hbt05-over.jpg");
		hbt06_over = newImage("images/hbt06-over.jpg");
		hbt07_over = newImage("images/hbt07-over.jpg");
		hbt08_over = newImage("images/hbt08-over.jpg");
		bt_03c01_over = newImage("images/bt_03c01-over.gif");
		bt_03c02_over = newImage("images/bt_03c02-over.gif");
		bt_03c03_over = newImage("images/bt_03c03-over.gif");
		preloadFlag = true;
	}
}

//ポップアップ
function Submadomovie(loc) {
  var wnd="Submadomovie";
  var width='400';
  var height='430';
  var myWindow = window.open(loc, wnd, 'resizable=no,scrollbars=no,status=0,width='+width+',height='+height);
  if (myWindow.focus!=null) {
	  myWindow.focus();
  }
}

//ウエディング
//URIを返す関数
function getURI () {
  return location.href.split("?")[1];
}
//ディレクトリを返す関数
function getDIR () {
  return location.href.split("/")[3];		//本サーバ[3]、テストサーバ[5]、ローカル[8]
}

//宿泊
//URIを返す関数
function getURI_rooms () {
  return location.href.split("dtl")[1].charAt(0);
}

//パスワードチェック
function PasswordCheck(){
	window.location.href = document.form1.Password.value + '/';
}