// JavaScript Document


//Goto TOP Scroll

function backToTop() {
var x1 = x2 = x3 = 0;
var y1 = y2 = y3 = 0;
if (document.documentElement) {
x1 = document.documentElement.scrollLeft || 0;
y1 = document.documentElement.scrollTop || 0;
}
if (document.body) {
x2 = document.body.scrollLeft || 0;
y2 = document.body.scrollTop || 0;
}
x3 = window.scrollX || 0;
y3 = window.scrollY || 0;
var x = Math.max(x1, Math.max(x2, x3));
var y = Math.max(y1, Math.max(y2, y3));
window.scrollTo(Math.floor(x / 2), Math.floor(y / 2));
if (x > 0 || y > 0) {
window.setTimeout("backToTop()", 25);
}
}

<!--
function OpenWinmitsumori(){
window.open("estimate/index.html","_blank","left=200,top=100,width=450,height=500,toolbar=no,scrollbars=yes");
}
// -->


function openDressDetail(url) {
    p = "width=787,height=480,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no";
    var w = window.open(url, 'wb_dress_detail', p);
}

function openNewsTopics(url) {
    p = "width=320,height=760,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no";
    var w = window.open(url, 'wb_news_topics', p);
}

function HallThemeCheck(len,limt){
	var flg=0;
	for(i=0;i < len; i++){
		var num = i + 1;
		if(document.mainaction.elements['hall_theme_resgues_' + num].checked==true){
			flg++;
			if(limt != 0){
				if(flg > limt){
					alert("チェックは3つ以内にしてください。");
					document.mainaction.elements['hall_theme_resgues_' + num].checked = false;
					break;
				}
			}
		}
	}
}

function HallHotelCheck(len,limt){
	var flg=0;
	for(i=0;i < len; i++){
		var num = i + 1;
		if(document.mainaction.elements['hall_theme_hotel_' + num].checked==true){
			flg++;
			if(limt != 0){
				if(flg > limt){
					alert("チェックは3つ以内にしてください。");
					document.mainaction.elements['hall_theme_hotel_' + num].checked = false;
					break;
				}
			}
		}
	}
}

function hallpreview(){
	document.halldetail.preview_flg.value = 1;
	document.halldetail.target = "_blank";
	document.halldetail.submit();
}


function confirm(){
	document.halldetail.preview_flg.value = 0;
	document.halldetail.target = "";
	document.halldetail.submit();
}

function photopreview(){
	document.photoinput.preview_flg.value = 1;
	document.photoinput.target = "_blank";
	document.photoinput.submit();
}


function photoconfirm(){
	document.photoinput.preview_flg.value = 0;
	document.photoinput.target = "";
	document.photoinput.submit();
}

function reportpreview(){
	document.report.preview_flg.value = 1;
	document.report.target = "_blank";
	document.report.submit();
}


function reportconfirm(){
	document.report.preview_flg.value = 0;
	document.report.target = "";
	document.report.submit();
}

function newspreview(){
	document.news.preview_flg.value = 1;
	document.news.target = "_blank";
	document.news.submit();
}


function newsconfirm(){
	document.news.preview_flg.value = 0;
	document.news.target = "";
	document.news.submit();
}

function fairpreview(){
	document.fair.preview_flg.value = 1;
	document.fair.target = "_blank";
	document.fair.submit();
}


function fairconfirm(){
	document.fair.preview_flg.value = 0;
	document.fair.target = "";
	document.fair.submit();
}
