// JavaScript Document
/*
Copyright (C) 2006 ECS All Rights Reserved.
Basic Library JavaScript
*/

//OpenWindow
function windowOpen(file,wx,wy){
	var x,y,no;
	if(wy == "100%") wy = window.screen.height - 150;
	x=(screen.width - wx)/2;
	y=(screen.height - wy)/2;
	if(no= "") no = 1;
	window.open(file,no,"left=0,top=0,width="+wx+",height="+wy+",scrollbars=yes,location=no,menubar=yes,status=yes,resizable=yes,toolbar=yes");
	no++;
}

//ページジャンプ
function popJump(selOBJ) {
	n = selOBJ.selectedIndex;
	location.href = selOBJ.options[n].value;
}


//ロールオーバー
function chimg(flag,imgno1,imgno2){
	if(flag){
		var onimg = "tab"+imgno1;
		var offimg = "tab"+imgno2;
		document.getElementById(onimg).src ="images/btn_cooperation_tab"+imgno1+".gif";
		document.getElementById(offimg).src ="images/btn_cooperation_tabo"+imgno2+".gif";
	}
	else{
		var onimg = "img0"+imgno1;
		document.getElementById(onimg).src ="images/cooperation_box_"+onimg+"-"+imgno2+".jpg";
	}
}

//
function disp(url){
	window.opener.location.href = url;
}