<!--



// constructor to hold display information
function kid09Display (theBgcolor, numberSet, buttonSet, subjectSet) {
this.theBgcolor = theBgcolor;
this.numberSet = numberSet;
this.buttonSet = buttonSet;
this.subjectSet = subjectSet;
}

var smileyFace = new kid09Display("800080", "kidsJS", "b", "smiley1.gif");

function show(layerNameS){
   document.getElementById( layerNameS ).style.visibility="visible"; 
}

function showPics(layerNameX, buttonNum) {
   for (var i=0; i == buttonNum; i++) {
       var daName = layerNameX + i;
       document.write(daName);
       document.getElementById( daName ).style.visibility="visible";
   }
}

 function hide(layerNameH){
    document.getElementById( layerNameH ).style.visibility="hidden"; 
}

function multiShow() {
    document.write("The multiShow function\n");   
}

function imgOff(imgName) {
    if (document.images) {
        document[imgName].src = eval(imgName + "off.src");
    }
}

function clickShow() {
    smileyFace.theBGcolor = "0000FF";
}
// -->

