funny resolution :)

Well for this screen I also would recommend 800x600 as the (internal and external) resolution for the 'big window', and maybe 224x168 for the little windows, to get exactly to 1024 in a 4:3 ratio.

A script for this could look like (straight from the sticky):
Code:
//-----------------------------------------------------------
// SUBROUTINE TO Position Windows for 5 boxing.
//-----------------------------------------------------------
<Command ResizeAndPosition>
   <SendPC Local>
      <SendWin %1%>
               <SetWinRect 0 0 800 600>              
      <SendWinM %2%>
             <SetWinRect 800 0 224 168>  
        <SendWinM %3%>
            <SetWinRect 800 168 224 168>     
        <SendWinM %4%>
            <SetWinRect 800  336 224 168>     
         <SendWinM %5%>
             <SetWinRect 800 504 224 168>

//----------------------------------------------------------------
//Window Switching
//----------------------------------------------------------------
<Hotkey F1>
   <ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>
<Hotkey F2>
   <ResizeAndPosition WoW2 WoW1 WoW3 WoW4 WoW5>
<Hotkey F3>
   <ResizeAndPosition WoW3 WoW2 WoW1 WoW4 WoW5>
<Hotkey F4>
   <ResizeAndPosition WoW4 WoW2 WoW3 WoW1 WoW5>
<Hotkey F5>
   <ResizeAndPosition WoW5 WoW2 WoW3 WoW4 WoW1>
...here of course you would have to change the window Names WoW1-WoW5 to the ones you use....