/* =============================================================================
	共通JS
============================================================================= */
// 動画再生
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 if (g == 'wide') {
		width = 900;
		height = 760;
	} 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');
}

function copyright() {
	document.write('Copyright &copy; 2011 Waseda University. All rights reserved.');
}

function presentopen() {
	window.open('/present/','new','toolbar=0,location=0,directiories=0,scrollbars=1,resizable=1,width=700,height=700,status=0,menubar=0');
}

function present_en() {
	window.open('/en/present/','new','toolbar=0,location=0,directiories=0,scrollbars=1,resizable=1,width=700,height=700,status=0,menubar=0');
}

function mail() {
	location.href = "mailto:trial-web@list.waseda.jp";
}


