/* Menu Rollover
----------------------------------------------- */

menuAll = new Array("g_menu01", "g_menu02", "g_menu03", "g_menu04", "g_menu05", "g_menu06");

for(i = 0; i < menuAll.length; i++) {
	var loadImg = menuAll[i] + "Img";
	document.loadImg = new Image();
	document.loadImg.src = "../img/" + menuAll[i] + "_over.gif";
}

function Over(mode) {
	document.images[mode].src = "../img/" + mode + "_over.gif";
}

function Out(mode) {
	document.images[mode].src = "../img/" + mode + ".gif";
}


/* google search
----------------------------------------------- */

function srad(){
	var objFrmSearch = document.getElementById('frmSearch');
	var objStype     = document.getElementById('stype1');

	if(objFrmSearch.query.value == ""){
		return false;
	}

		objFrmSearch.q.value = 'site:www.baika.ac.jp ' + objFrmSearch.query.value;

	objFrmSearch.query.value = "";

	return true;
}

/* pop up
----------------------------------------------- */
function OpenWin( sTRURL ){
    var screen_width = screen.availWidth - 10;
    var screen_height = screen.availHeight - 30;
    sTRFeatures = "screenX=0,screenY=0,width=" + screen_width + ",height=" + screen_height +",";
    sTRFeatures += "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";

    windowname=window.open( sTRURL, "", sTRFeatures );
    windowname.focus();
}