// JavaScript Document

var backColor = new Array(); // don't change this

// Enter the colors you wish to use. Follow the
// pattern to use more colors. The number in the
// brackets [] is the number you will use in the
// function call to pick each color.

backColor[0] = '#DFEFFF';
backColor[1] = 'FFFFFF';

// Do not edit below this line.

function changeBG(obj,whichColor){
obj.bgColor = backColor[whichColor];
}
// End -->


