<!--

//////　小ウィンドウ表示スクリプト　//////

var newWindow=null;

function window_open(w,h,s_data,w_data){

    ww=w.substring(0,w.length);

    hh=h.substring(0,h.length);

    ss_data=s_data;

    ww_data=w_data;

    setTimeout('small_win(ww,hh,ss_data,ww_data)',1000);

}

function small_win(wi,he,s_data,w_data){

    newWindow=window.open(s_data,w_data,"toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=yes,copyhistory=0,width="+wi+",height="+he);

}



//////　リサイズスクリプト　//////

function mvCenter() {

	x=400;

	y=480;

	if (document.all) {

		w=document.body.clientWidth;

		h=document.body.clientHeight;

		resizeBy(x-w,y-h);

	}

	else {

		w=innerWidth;

		h=innerHeight;

		x1=x+20;

		y1=y+20;

		resizeBy(x1-w,y1-h);

	}

	window.focus();

}

// --> 