function fullvideo(VIDEO,ASPECT_TYPE) {
	
	// alert(VIDEO);
	
	// モニターの横幅を変数theWidthに代入
	var theWidth = screen.availWidth;
	var theHeight = screen.availHeight;	// 開く
	window.open(
		"/fullvideo.php?v="+VIDEO+"&a="+ASPECT_TYPE+"&w="+(theWidth-0)+"&h="+(theHeight-0), 
		"fullvideo",
		"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,left=0,top=0,width="+theWidth+",height="+theHeight);}