var backColor = new Array(); // don't change this

backColor[0] = '#FF0000';
backColor[1] = '#00FF00';
backColor[2] = '#0000FF';
backColor[3] = '#FFFFFF';



// Do not edit below this line.
//-----------------------------


// Set document backgroud color to the one passed
function chamaleon(BG, FG)
   {
   document.bgColor = BG;
   document.fgColor = FG;
   }



// Opens a New window of (little more) the given dimension
// Containing th given URL Document, with no controls
// Used to display larger Images on new windows
function newwin(Url, H, W) 
   {   
   open  (
         Url, 
         '', 
         'width='+(H+18)+', height='+(W+18)+', menubar=no, resizable=no, scrollbars=no, status=no, toolbar=no'
         );   
   return true;
   }    
