/* ボッシュ・イン・ジャパン */

function openSampleSubWindow( pageUrl ) {
	var windowFeatures = "width=700, height=510, menubar=no, location=no, resizable=yes, scrollbars=yes";
	var subWindow = window.open( pageUrl, "bspSampleSubWindow", windowFeatures );
	subWindow.opener = self;
	subWindow.focus();
	return false;
}

