if (document.images) {

	// 設定開始

	// 画像1
	var img1on = new Image();
	img1on.src = "images/the_gunze_bt01_o.gif"; // ポイント時の画像
	var img1off = new Image();
	img1off.src = "images/the_gunze_bt01.gif"; // 通常の画像

	// 画像2
	var img2on = new Image();
	img2on.src = "images/the_gunze_bt02_o.gif";
	var img2off = new Image();
	img2off.src = "images/the_gunze_bt02.gif";

	// 設定終了

}

// ポイント時の処理
function On(name) {

	if (document.images) {

		document.images[name].src = eval(name + 'on.src');

	}

}

// 放した時の処理
function Off(name) {

	if (document.images) {

		document.images[name].src = eval(name + 'off.src');

	}

}



function disp(url){

	window.open(url, "window_name", "width=800,height=600,scrollbars=yes,resizable=yes");

}
