    //  Global Variables
    var main_div_x;     //  width of main division
    var main_div_y;     //  height of main division
    var main_div_xloc = 64;  //  x pixel location of main division
    var main_div_yloc = 72;  //  y pixel location of main division
    
    function setMainDiv()
    //  Sets main division size and position
        {
        //  'obj' is the positionable object
        var obj = getRawObject("main");
				
        //  size the division
        main_div_y = getInsideWindowHeight() - main_div_yloc;
        main_div_x = getInsideWindowWidth() - main_div_xloc;
        document.getElementById("main").style.width = main_div_x;
        document.getElementById("main").style.height = main_div_y;
        
        //  move the division
        shiftTo(obj, main_div_xloc, main_div_yloc);
        
        //  display the division
        show(obj);
        
        //  move image of 2's
        obj = getRawObject("img2");
        shiftTo(obj, 0, main_div_yloc);
        show(obj);
		
		//shift copyright text
		main_div_yloc = main_div_yloc + 252;
		obj = getRawObject("copyright");
		shiftTo(obj, 88, main_div_yloc);
		show(obj);
		
        //  set the header width to produce top border
        document.getElementById("top_border").style.width = (main_div_x - 312);
        
        //  set the footer width to produce bottom border
        document.getElementById("bottom_border").style.width = (main_div_x - 312);        
        }
        
    window.onresize = setMainDiv;