// JavaScript Document

/* flv用html page open          */
/* 引数1:開くページURL          */
/* 引数2:サイズ指定('o' or 'a') */
function v_open( path , type ){
	/*デフォルト 画面サイズ(光回線用)*/
	op_size = "width=360,height=320";

	if(type == 'a'){
		/* ADSL */
		op_size = "width=280,height=260";
	}
	window.open( path,"",op_size );
}

//オープンキャンパス2011//
function v_open2( path , type ){
	/*デフォルト 画面サイズ(光回線用)*/
	op_size = "width=460,height=440";

	if(type == 'a'){
		/* ADSL */
		op_size = "width=360,height=260";
	}
	window.open( path,"",op_size );
}
//オープンキャンパスCM 2011.07
function v_openCM( path , type ){
	/*デフォルト 画面サイズ(光回線用)*/
	op_size = "width=700,height=500";

	if(type == 'a'){
		/* ADSL */
		op_size = "width=360,height=260";
	}
	window.open( path,"",op_size );
}

//教員紹介2011//
function v_open3( path , type ){
	/*デフォルト 画面サイズ(光回線用)*/
	op_size = "width=465,height=320";

	if(type == 'a'){
		/* ADSL */
		op_size = "width=360,height=260";
	}
	window.open( path,"",op_size );
}
