// JavaScript Document

<!--

var backColor = new Array(); // don't change this

backColor[0] = '#FFFFFF';	// this is the default color: white;
backColor[1] = '#ffffae';	// pale yellow
backColor[2] = '#ffff00';	// yellow
backColor[3] = '#baedff';	// pale blue

// Do not edit below this line.
//-----------------------------

function changeBG(whichColor){
document.bgColor = backColor[whichColor];
}

//-->

