function ryouriWindow(theURL) {
	var winName = 'ryouri';
	var features = 'scrollbars=yes,resizable=yes,width=500,height=500';
	var newwin = window.open(theURL,winName,features);
	newwin.focus();
}

