//ウィンドウをフルスクリーンにします。

var ms = navigator.appVersion.indexOf("MSIE");
var ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4)
var nesc = navigator.appName.lastIndexOf("Netscape"); //一致した位置(0)を返す
var nesc4 = (nesc >= 0) && (parseInt(navigator.appVersion.substring(0,2)) >= 4);


function fullscreen1(){
        if (nesc4){
        newwindow = window.open("/event/re/mov_sponsorship_sales.html","newwindow","width=" + window.screen.width + ",height=" + window.screen.height);
                newwindow.moveTo(0,0);
                newwindow.focus();

        }else if (ie4){
				var winW = window.screen.width;
				var winH = window.screen.height;
				window.open("/event/re/mov_sponsorship_sales.html","screen","scrollbars=yes,resizable=yes,width=1024+,height=768");

        }else{
                location.href="/event/re/mov_sponsorship_sales.html";
        }
}
