Background Image

Remove Background from Image – remove.bg 


The Question
How do i get a background image in a frame to fill the entire background but not tile (even at different resolutions)?.
Do I have to make a table that's 100% of the page and insert a background in the table?
auto-stretch?
scaling?



<script language="JavaScript1.2">
    // this script goes directly after the <body> tag
    if (document.all || document.getElementById)
       document.body.style.background="url('image/cs8-page.jpg') black center no-repeat fixed"
</script>


<script language="JavaScript1.2">
    <!--
    // this code goes in the <body> tag, you can change resolution to scan for by changing var correctwidth=800, & vay correctheight=600
    var correctwidth=800
    var correctheight=600
    if (screen.width != correctwidth || screen.height != correctheight)
        document.write("This webpage is bested viewed with screen resolution "+correctwidth+"*"+correctheight+". Your current resolution is "+screen.width+"*"+screen.height+". If possible, please     change the resolution!")
    //-->
</script>

 



This code will maximize the user's browser window when visiting your site.
<script language="JavaScript1.2">
     <!--
    top.window.moveTo(0,0);
    if (document.all) {
        top.window.resizeTo(screen.availWidth,screen.availHeight);
    }
    else if (document.layers||document.getElementById) {
        if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
            top.window.outerHeight = screen.availHeight;
            top.window.outerWidth = screen.availWidth;
        }
    }
    //-->
</script>


Is there a way to open a maximised window in Internet Explorer?