/*
**************************************************
*	ポップアップ用JS
**************************************************
*/

/* ポップアップ */

function popupTop( openFile ) {
	window.open( "chart/" + openFile,
							"popupTop1", 
							"SCROLLBARS=yes,resizable=yes,menubar=no,directories=no,status=no,location=no,Width=570,Height=560" );
}

function popupTop2( openFile ) {
	window.open( "chart/" + openFile,
							"popupTop2", 
							"SCROLLBARS=yes,resizable=yes,menubar=no,directories=no,status=no,location=no,Width=570,Height=400" );
}

function popup470( openFile ) {
	window.open( "chart/" + openFile,
							"popup2", 
							"SCROLLBARS=yes,resizable=yes,menubar=no,directories=no,status=no,location=no,Width=470,Height=550" );
}

function popup550( openFile ) {
	window.open( "popup/" + openFile,
							"popup3", 
							"SCROLLBARS=yes,resizable=yes,menubar=no,directories=no,status=no,location=no,Width=630,Height=400" );
}

