//動画再生
function movie_start(URL, g) {
	var width = '';
	var height = '';
	if (g == 'acqulia') {
		width = 640;
		height = 550;
	} else if (g == 'sport') {
		width = 640;
		height = 600;
	} else {
		width = 820;
		height = 600;
	}
	window.open(URL,'_real','toolbar=0,location=0,directiories=0,scrollbars=0,resizable=1,width=' + width + ',height=' + height + ',status=0,menubar=0');
}
