<!--

//ページの移動
function movePage(value) {
	document.form.startnum.value = value;
 	document.form.submit();
}

//直営ギャラリーの遷移
function moveSite(value) {
	document.form.gallery.value = value;
	for (i = 0; i < document.form.elements['artist[]'].options.length; i++) {
    	document.form.elements['artist[]'].options[i].selected = false;
    }
	document.form.startnum.value = '';
	document.form.prefecture.value = '';
	document.form.week_date.value = '';
 	document.form.submit();
}

-->