/************************************************/
/* 滋賀県信用組合ホームページ JavaScript        */
/*                                              */
/*   作成日：2005.08.23                         */
/************************************************/


function chgImg(name,ptn,ptn2) {
	document.images[name].src = "./images/" + name + ptn + ".jpg";
	if ( ptn2 == 2 )
	{
		ptn = "_" + ptn;
	}
	if ( ptn2 == 1 || ptn2 == 2 )
	{
		name += "_t";
		document.images[name].src = "./images/tama" + ptn + ".gif";
	}
}

function chgColor( obj, ptn ) {
	if ( ptn == 1 )
	{
		obj.style.backgroundColor = "#FFFFFF";
	}
	else
	{
		obj.style.backgroundColor = "#C8DFF3";
	}
}

function openSpKinri() {
	var hWnd;
//	hWnd = window.open("special_kinri.asp","sub","width=680,height=480,location=no,toolbar=no");
	hWnd = window.open("special_kinri.html","sub","width=680,height=640,location=no,toolbar=no");
	hWnd.focus();
}

function openMemberYuutai() {
	var hWnd;
//	hWnd = window.open("member_yuutai.asp","sub","width=550,height=350,location=no,toolbar=no");
	hWnd = window.open("member_yuutai.html","sub","width=550,height=350,location=no,toolbar=no");
	hWnd.focus();
}

function openSubWindow(url) {
	var hWnd;
	hWnd = window.open(url,"sub","width=550,height=600,location=no,toolbar=no,scrollbars=yes");
	hWnd.focus();
}

function toSimulation() {
	opener.location = 'loansimulation.html';
	self.close();
}

function confirmbox(url){
	var flag;
	flag = confirm("ここから先の情報はリンク先によるものです。");
	if(flag)window.open(url,"sub");
}
