/* ---------------------------------------------------------
	澤田酒造ホームページ
	2001/05/30 by nakano
--------------------------------------------------------- */

/* ---------------------------------------------------------
	NetscapeNavigator v4の
	ｳｲﾝﾄﾞｻｲｽﾞ変更のﾊﾞｸﾞを除去
--------------------------------------------------------- */
function ReLoadPage(init) {
  if (init==true) with (navigator) {
	if ((appName=="Netscape") && (parseInt(appVersion)==4)) {
    	document.pgW=innerWidth; document.pgH=innerHeight;
		onresize=ReLoadPage;
	}
  }
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();
};

/* ---------------------------------------------------------
	セレクトメニュー
--------------------------------------------------------- */
function JumpMenu(){
	var select = document.formScript.selMenu.selectedIndex;
	if (document.formScript.selMenu.options[select].value != "#") {
		parent.location.href = document.formScript.selMenu.options[select].value;
	};
};
