//staticページオープン用JavaScript

//ガイド
function guideOpen() {
	window.name = "top";
	var newWin = window.open('/oadis/web/static/guide/userRegistration.jsp', 'GuideWindow', 'scrollbars=yes, resizable=yes, width=740, height=700');
	newWin.focus();
}

//よくある質問
function faqOpen() {
	var newWin = window.open('/oadis/web/static/faq/memberLogin.jsp', 'FAQWindow', 'scrollbars=yes, resizable=yes, width=830, height=670');
	newWin.focus();
}

//ギャラリー
function galleryOpen() {
	var newWin = window.open('http://www.oadis.jp/gallery/', 'GalleryWindow', 'scrollbars=yes, resizable=yes, width=1024, height=768');
	newWin.focus();
}


//指定したJSPを新しいウィンドウでオープン
function newWindowOpen(jspName , windowName) {
	var objs = document.getElementsByTagName("BODY");
	if(objs[0].id == "topPage"){
		window.name = "top";
	} else {
		window.name = "main";
	}
	
	var newWin = window.open(jspName , windowName, 'scrollbars=yes, resizable=yes, width=740, height=700');
	newWin.focus();
}