
function $_init() {
    WinFxCntl();
    
    var $_swf = document.getElementById("mainMovie");
    $_swf.focus();
    //$_swf.onmouseover = function() { this.stageIn(); this.focus(); }
    //$_swf.onmouseout  = function() { this.stageOut(); }

    window.onfocus=function(){ $_swf.focus(); }	
}


function $_wheel(event){
	var delta = 0;
	delta = -event.detail;
	//if (delta) { document["mainMovie"].externalMouseEvent(delta); }
}


function WinFxCntl() {
    // Only WindowsFirefox
    if (navigator.userAgent.match(/Windows.*Firefox/)) {
        document.getElementById("flashcont").addEventListener('DOMMouseScroll', $_wheel, false);
    }
}

