<!--
function resizeWindow(deltaW) {
/********************************************************
 *  Adapted from JavaScript Bible, 5th Edition
 *  Part III Document Objects Reference, pages 417-419
 *  Author Danny Goodman with Michael Morrison
 *  Wiley Publishing Inc., Copyright 2004
 *  ISBN 0-7645-5743-2
 *******************************************************/  
   window.moveTo(0,0);
   window.resizeTo(screen.availWidth - deltaW, screen.availHeight);
}
// -->
