function gf_OpenNewWindow(pURL,pName,pSize){
	var wWidth,wHeight;
	var wSize,wFeatures;
	var wLeft,wTop,PositionX,PositionY;

	wWidth = window.screen.availWidth/2;
	wHeight = window.screen.availHeight/2;
	wSize = pSize.split(":");
	wLeft = wSize[0].split("=");
	wTop = wSize[1].split("=");
	PositionX = wWidth-wLeft[1]/2;
	PositionY = wHeight-wTop[1]/2;
	
	wFeatures = wSize+",left="+PositionX+",top="+PositionY;
	
	wWindow = window.open(pURL,pName,wFeatures+",scrollbars=yes,status=yes,resizable=yes");

	wWindow.focus();

}

function setfrom1(value) {
    parent.document.getElementById("from1_text").innerHTML = value + "&nbsp;を選択しました";    
    parent.document.getElementById("from1").value = value;
}

function setfrom_calendar(tourid, room_type, value) {
    //parent.document.getElementById("from1").value = value;
    adult = parent.document.getElementById("adult").value;
    child = parent.document.getElementById("child").value;
    little = parent.document.getElementById("little").value;
    
    url = "https://www.5454.co.jp/form/?id=" + tourid + "&from1=" + value + "&room_type=" + room_type + "&adult=" + adult + "&child=" + child + "&little=" + little;

//alert(url);
    //parent.document.pform.submit();
    window.open(url,'form','width=700, height=700,resizable=yes,scrollbars=yes')
}



function setRoom_type(value, text_value) {
    document.getElementById("room_type_text").innerHTML = text_value;
    document.getElementById("room_type").value = value;
}

function chengeArea() {
    var time= (new Date());
    
	area = document.form1.area.value;
	url = "select.php?area=" + area + "&time=" + time.getTime();

	$("#hotelcontents").data("file", url);
	$("#hotelcontents").load($("#hotelcontents").data("file")+" #scontent");
	
	return false;
}
