function openFullscreen(strURI, isWindowClose){
	var strAppVer = navigator.appVersion;
	var strAppNM  = navigator.appName;
	var intPos    = strAppVer.indexOf("MSIE",0);
	var msg = "申し訳ございませんが、あなたのご利用のブラウザでは\n\n本コンテンツをご覧いただくことができません。\n\nMicrosoft Internet Explorerや\n\nSafari等のブラウザをご利用の上、再度お試しください。";
	
//	alert(strAppVer);
//	alert(strAppNM);
	
	if(strAppVer.indexOf("Win")>=0){ //OS--Windows
		if(strAppNM.indexOf("Microsoft")>=0){ //Browser--InternetExplorer
			if (strAppNM == "Microsoft Internet Explorer" && parseInt(strAppVer)>=4){ //IE version more 4
				var fullWindow = window.open(strURI,'full','left=0,top=0,width='+screen.availWidth+',height='+screen.availHeight+',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,personalbar=no');
				fullWindow.moveTo(0, 0);
				fullWindow.resizeTo(screen.availWidth, screen.availHeight);
				fullWindow.focus();
				if(isWindowClose) {
					window.close();
				}
				return fullWindow ? false : true;
			}else{ //IE version under 4
				fullWindow = window.open(strURI,"full","width=" + (screen.availWidth+1) + ",height=" + (screen.availHeight-21) + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,left=0,top=0,screenX=0,screenY=0",true);
				if(isWindowClose==true){
					window.close();
				}
			}
		}else if(strAppNM.indexOf("Netscape")>=0){ //Browser--NetscapeNavigator
			if(strAppVer.indexOf("Chrome")>=0){	//Browser--Chrome
				fullWindow = window.open(strURI,'full','left=0,top=0,width='+screen.availWidth+',height='+screen.availHeight+',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,personalbar=no');
				fullWindow.moveTo(0, 0);
				fullWindow.resizeTo(screen.availWidth, screen.availHeight);
				fullWindow.focus();
				if(isWindowClose) {
					window.close();
				}
			}else{
				fullWindow = window.open("","full","scrollbars=0,resizable=0,outerWidth=" + screen.availWidth +",outerheight=" + screen.availHeight +",top=0,left=0");
				fullWindow.moveBy(0,-10);
				fullWindow.location.href = strURI;
				if(isWindowClose==true){
					window.close();
				}
			}
		}else if(strAppNM.indexOf("Opera") >= 0){//Browser--Opera
			fullWindow = window.open("","full","scrollbars=0,resizable=0,outerWidth=" + screen.availWidth +",outerheight=" + screen.availHeight +",top=0,left=0");
			fullWindow.moveBy(0,-10);
			fullWindow.location.href = strURI;
			if(isWindowClose==true){
				window.close();
			}
		}else{ //Browser-- 3rdParty
			alert(msg);
		}
	}else if(strAppVer.indexOf("Mac")>=0){ //OS-Machintosh
		if(strAppVer.indexOf("Safari")>=0){ //Brower--Safari
			fullWindow=window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth) +",height=" + (screen.availHeight-18));
			fullWindow.moveTo(0,0);
			fullWindow.location.href=strURI;
			if(isWindowClose==true){
				window.close();
			}
		}else{
			if(strAppNM.indexOf("Microsoft")>=0){ //Browser--InternetExplorer
				fullWindow = window.open(strURI,"full","alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=1,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=0,screeny=0,left=0,top=0");
				fullWindow.resizeTo(screen.availWidth,screen.availHeight);
				if(isWindowClose==true){
					window.close();
				}
			}else if(strAppNM.indexOf("Netscape")>=0){ //Browser--NetscapeNavigator
				fullWindow=window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth) +",height=" + (screen.availHeight-30));
				fullWindow.moveTo(0,0);
				fullWindow.location.href=strURI;
				if(isWindowClose==true){
					window.close();
				}
			}else if(strAppNM.indexOf("Opera") >= 0){
				fullWindow=window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth) +",height=" + (screen.availHeight-30));
				fullWindow.moveTo(0,0);
				fullWindow.location.href=strURI;
				if(isWindowClose==true){
					window.close();
				}
			}else{ //Browser-- 3rdParty
/*
				alert("お使いのブラウザでは、ご覧いただけません。");
*/
			}
		}
	}else{
		alert(msg);
	}
}