function fitPic() {
                if (window.innerWidth){
                    iWidth = window.innerWidth;
                    iHeight = window.innerHeight;
                }else{
                    iWidth = document.body.clientWidth;
                    iHeight =document.body.clientHeight;
                }
                iWidth = document.images[0].width - iWidth;
                iHeight = document.images[0].height - iHeight;
                window.resizeBy(iWidth, iHeight);
};