<!-- window open -->
<!--

/* 投稿フォーム */
function contributeWinOpen(page){
	var url;
	
	if( page == "photo" ){
		page = "agreement_spa_photo.html";
	}else if( page == "episode" ){
		page = "agreement_episode.html";
	}else if( page == "store" ){
		page = "agreement_store.html";
	}
	
	newWin = window.open('/onsen/contribute/' + page, "contribute", "toolbar=1,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=480,height=500");
	newWin.focus();
}


/* 拡大写真 */
function viewPhoto(url){
	newWin = window.open( url, "contribute", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=480,height=500");
	newWin.focus();
}


/* 旧泉質、新泉質対応表 */
function viewCorrespond(){
	newWin = window.open( "/onsen/search_effect/correspond.html", "correspond", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=480,height=500");
	newWin.focus();
}

/* イベント一覧 */
function viewEventList(url){
	newWin = window.open( url, "correspond", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=480,height=500");
	newWin.focus();
}

/* 会員までの流れ */
function openwin4(url){
	staffwin = window.open( url, "itemdetailwin", "scrollbars=yes,resizable=no,width=400,height=600");
	staffwin.focus();
}

/* カレンダー */
function viewCalendar(){
	newWin = window.open( "calendar.html", "cal", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=1,width=350,height=250");
	newWin.focus();
}


// -->

