function newSize(myW, myH){
    GmyW = myW
    GmyH = myH
    // Internet Explorer
    if (document.all) {
        var flashHeight = document.body.clientHeight;
        var flashWidth = document.body.clientWidth;
        
        if (flashWidth > myW) {
            document.body.scroll = "no";
            document.all['flashContent'].style.width = "100%";
        }
        else 
            if (flashWidth < myW) {
                document.body.scroll = "yes";
                document.all['flashContent'].style.pixelWidth = myW;
            }
        
        if (flashHeight > myH) {
            document.body.scroll = "no";
            document.all['flashContent'].style.height = "100%";
        }
        else 
            if (flashHeight < myH) {
                document.body.scroll = "yes";
                document.all['flashContent'].style.pixelHeight = myH;
            }
        
        if (flashWidth < myW && flashHeight > myH) {
            document.body.scroll = "yes";
            document.all['flashContent'].style.width = myW;
        }
        
        // FireFox
    }
    else 
        if (document.getElementById) {
        
            var flashH = self.innerHeight;
            var flashW = self.innerWidth;
            
            if (flashW > myW) {
                document.getElementById('flashContent').style.width = "100%";
            }
            else 
                if (flashW < myW) {
                    document.getElementById('flashContent').style.width = myW + "px";
                }
            
            if (flashH > myH) {
                document.getElementById('flashContent').style.height = "100%";
            }
            else 
                if (flashH < myH) {
                    document.getElementById('flashContent').style.height = myH + "px";
                }
            
            if (flashW < myW && flashH > myH) {
                document.getElementById('flashContent').style.width = myW + "px";
            }
        }
}
