function hiliteMenu(thisSpan)
{
		thisSpan.style.backgroundColor = "#ffcccc";
		thisSpan.style.color = "blue";
}

function restoreMenu(thisSpan)
{
	thisSpan.style.backgroundColor = "";
	thisSpan.style.color = "";
}

function onclickMenu(no)
{
	if( !checkIE() ){
		alert("すみません。\nログの再現はWindows+IE5.5以降でご覧ください。\nm(__)mのりー");
		return;
	}
	var w_width =window.screen.availWidth;
	var w_height=window.screen.availHeight;
	var w = 770;	//w_width - 40;
	var h = w_height - 80;
	var iMap = 8;
	var iLog = 24 + (no-1);
	var openArg = "width="+w+",height="+h+",top=0,left=20,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no";
	var surl="./yasatoindex.htm?"+iMap+","+iLog;
	window.open(surl,"yasato_win",openArg)
}
function onclickMenu2(iMap,iLog)
{
	if( !checkIE() ){
		alert("すみません。\nログの再現はWindows+IE5.5以降でご覧ください。\nm(__)mのりー");
		return;
	}
	var w_width =window.screen.availWidth;
	var w_height=window.screen.availHeight;
	var w = 770;	//w_width - 40;
	var h = w_height - 80;
//	var iMap = 4;
//	var iLog = 24 + (no-1);
	var openArg = "width="+w+",height="+h+",top=0,left=20,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no";
	var surl="./yasatoindex.htm?"+iMap+","+iLog;
	window.open(surl,"yasato_win",openArg)
}
