﻿function onResize(){
    //make sure there is flash first!
    if(fPlayer){
        var myDiv = document.getElementById('flashFeature');
        if(document.body.clientWidth < myDiv.clientWidth){
            if(document.body.clientWidth > 965){
                var dif = myDiv.clientWidth - document.body.clientWidth;
                sendWidthToFlash(dif);
                dif = -167 - dif/2;
                myDiv.style.marginLeft = dif+"px";
            }
        }else{
            sendWidthToFlash(0);
            myDiv.style.marginLeft = "-167px";
        }
    }
}
function sendWidthToFlash(p_width){
    if(navigator.appName == "Microsoft Internet Explorer"){
        document.flashFeature.SetVariable("stageWidth", p_width);
    }else{
        var flashMovie = document.getElementById("flashFeature");
        flashMovie.SetVariable("stageWidth", p_width);
    }
}
