//브라우저 전체 화면 설정
function f_SetFullScreen( ) {
//브라우저가 전체 화면이 아닌 경우 전체 화면 모드로 설정하세요.
if (!f_IsFullScreen()) {
var wsShell = new ActiveXObject('WScript.Shell')
wsShell.SendKeys( '{F11}');
return false;
}
}
//브라우저가 전체 화면인지 확인
function f_IsFullScreen() {
return (document.body .scrollHeight == window.screen.height && document.body.scrollWidth == window.screen.width)
}