﻿itemMax=new Array(0,0,0,0,0,0,0);

offMenuForeColor="#000000";
offMenuBackColor="#dfffdf";
offMenuFontWeight="normal";

onMenuForeColor ="#ff0000";
onMenuBackColor ="#dfffdf";
onMenuFontWeight="normal";

offItemForeColor="#000000";
offItemBackColor="#eeeeff";
offItemFontWeight="normal";

onItemForeColor ="#dc143c";
onItemBackColor ="#eeeeff";
onItemFontWeight="bold";

function onMenu(menuNo,pageNo){
	if(menuNo!=pageNo){
		document.getElementById("menu"+menuNo).style.color=onMenuForeColor;
		document.getElementById("menu"+menuNo).style.backgroundColor=onMenuBackColor;
		document.getElementById("menu"+menuNo).style.fontWeight=onMenuFontWeight;
	}
	for(i=0;i<itemMax[menuNo];i++){
		document.getElementById("item"+menuNo+i).style.display="block";
	}
}

function offMenu(menuNo,pageNo){
	if(menuNo!=pageNo){
		document.getElementById("menu"+menuNo).style.color=offMenuForeColor;
		document.getElementById("menu"+menuNo).style.backgroundColor=offMenuBackColor;
		document.getElementById("menu"+menuNo).style.fontWeight=offMenuFontWeight;
	}
	for(i=0;i<itemMax[menuNo];i++){
		document.getElementById("item"+menuNo+i).style.display="none";
	}
}

function onItem(itemNo){
	document.getElementById("item"+itemNo).style.color=onItemForeColor;
	document.getElementById("item"+itemNo).style.backgroundColor=onItemBackColor;
	document.getElementById("item"+itemNo).style.fontWeight=onItemFontWeight;
}

function offItem(itemNo){
	document.getElementById("item"+itemNo).style.color=offItemForeColor;
	document.getElementById("item"+itemNo).style.backgroundColor=offItemBackColor;
	document.getElementById("item"+itemNo).style.fontWeight=offItemFontWeight;
}

function openWin(url){
	var options="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	var win=window.open(url,"",options);
//	win.moveTo(0,0);
//	win.resizeTo(screen.width,screen.height-30);
}
