function ahover(strid){
	var bgColorName='';
	switch(strid){
		case 'menu1':// 赤
			bgColorName="#efd9d9";
			break;
		case 'menu2':// 橙
			bgColorName="#efe3d9";
			break;
		case 'menu3':// 黄
			bgColorName="#efedd9";
			break;
		case 'menu4':// 緑
			bgColorName="#d9efe2";
			break;
		case 'menu5':// 青
			bgColorName="#d9ecef";
			break;
		case 'menu6':// 藍
			bgColorName="#d9dcef";
			break;
		case 'menu7':// 紫
			bgColorName="#e5d9ef";
			break;
		default:
			bgColorName="#f4f4f4";
	}
	
	//document.getElementById(strid).style.backgroundColor=bgColorName;
	document.getElementById(strid).style.border="solid 1px #666666";


}
function ahoverout(strid){
	document.getElementById(strid).style.backgroundColor="";
	document.getElementById(strid).style.border="solid 1px #d4d4d4";
}
function imgOpenW(t,i,s,width,height){
	var url = "/db/img_w.php?t=" + t + "&i=" + i + "&s=" + s + "&f=2";
	var style = "width=" + width + ",height=" + height + ",scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0";
	window.open(url,'popup',style);
}

