// -------------------------------------
// リーファ・ナカガワ MAGIC BALL
// Common JavaScript
// 
// Code:UTF8
// Break:CrLf
// 
// COPYRIGHT (C) ARCADIA Co.,Ltd.
// -------------------------------------

// -------------------------------------
// GrobalMenu Rollover/Rollout
// -------------------------------------
var current_menu = "";

function over(key){
	var overfile = "mn_"+key+"_ov.gif";
	if (document.getElementById("mn_"+key).src.indexOf(overfile) === -1){
		document.getElementById("mn_"+key).src = "img/"+overfile;
		current_menu = key;
	} else {
		current_menu = "";
	}
}
function out(){
	if (current_menu !== ""){
		document.getElementById("mn_"+current_menu).src = "img/mn_"+current_menu+".gif";
		current_menu = "";
	}
}

// -------------------------------------
// Open MiniWindow
// -------------------------------------
var winObj = null;
function miniWin(url){
	winObj = window.open(url+".html", "miniwin", "width=450,height=450,menubar=0,toolbar=0,directories=0,resize=1,scrollbars=1");
	winObj.focus();
}

// -------------------------------------
// Resize for Netscape4
// -------------------------------------
function MM_reloadPage(init) {
	if (init==true) with (navigator) {
		if ( (appName=="Netscape") && (parseInt(appVersion)==4) ) {
			document.MM_pgW=innerWidth;
			document.MM_pgH=innerHeight;
			onresize=MM_reloadPage;
		}
	} else {
		if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH){
			location.reload();
		}
	}
}
MM_reloadPage(true);


