//============================================================================//
//	ウィンドウを開く
//============================================================================//


function openwin(wnd, url, left, top, width, height) {
	var myWindow = window.open(url,wnd,'resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}

//============================================================================//
//	ウィンドウを閉じる
//============================================================================//

function CloseWin(){
	window.close();
}

//============================================================================//
//	会社概要用オープンウインドウ
//============================================================================//
function b1() {
	window.open("tokyo.html","page","width=550,height=400,scrollbars=no,resizable=no,toolbar=no,left=10,top=0")
}
function b2() {
	window.open("osaka.html","page","width=550,height=400,scrollbars=no,resizable=no,toolbar=no,left=10,top=0")
}
function b3() {
	window.open("hukuoka.html","page","width=550,height=400,scrollbars=no,resizable=no,toolbar=no,left=10,top=0")
}
function b4() {
	window.open("hp.html","page","width=550,height=400,scrollbars=no,resizable=no,toolbar=no,left=10,top=0")
}

//============================================================================//
//	モデルルーム検索用オープンウインドウ
//============================================================================//
function OpenSubWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}


//============================================================================//
//	事例集オープンウインドウ
//============================================================================//
function openJirei(theURL) {
	var winJirei = window.open(theURL,"jireiWin","width=550,height=480,resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,")
	winJirei.focus();
}
