//============================================================================//
//	ウィンドウを開く
//============================================================================//

function ms1() {
	window.open("color_tokyo.html","color","width=300,height=400,scrollbars=no,resizable=no,toolbar=no,left=10,top=0")
}

function OpenWIn(theURL,winName,features){
	window.open(theURL,winName,features);
}

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();
}

//============================================================================//
//	css振り分け
//============================================================================//
if(navigator.userAgent.indexOf("Mac")!=-1){
document.write("<LINK REL=STYLESHEET HREF=http://www.apamanshop.com/style_mac.css TYPE=text/css>");
} else {
document.write("<LINK REL=STYLESHEET HREF=http://www.apamanshop.com/style_win.css TYPE=text/css>");
}
