function PageResize (AfResize) 
{
    if (AfResize=='1') 
    {
    	window.resizeTo(screen.width, screen.height);
        top.outerWidth=screen.width;		    
        top.outerHeight=screen.height;        
    }
    if (AfResize=='800_600')
    { 
        window.resizeTo(800,600);
	    top.outerWidth=800;		    
        top.outerHeight=600;       
    }
}
