window.onload = maxWindow;

    function maxWindow() {
        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;
            }
        }
    }

	
function loadTwo(iframe1URL, iframe2URL)
	{
	parent.FRAME1.location.href=iframe1URL
	parent.FRAME2.location.href=iframe2URL
	} 

	


