function makeSelOpt (obj) {
        if (obj.length > 1) {
                var last = 2;
                if (document.all){
                        var last = obj.length;
                        for (var count = 2; count < last; count++) {
                        obj.remove(2)
                        }
                }
        } else {
                var last = obj.length;
        }
        for (var count = 0; count < URLs.length; count++) {
                if (navigator.appName == "Netscape") {
                        obj[last + count] = new Option(NAMEs[count],URLs[count],false);
                } else {
                        var newElem     = document.createElement("OPTION");
                        newElem.text    = NAMEs[count];
                        if (URLs[count] != "") {
                                newElem.value = URLs[count];
                                if (navigator.platform != "MacPPC") {newElem.style.backgroundColor = "#ffffff";}
                        } else if (navigator.platform != "MacPPC") {
                                 newElem.style.backgroundColor = "#dddddd";
                        }
                        obj.add(newElem);
                }
        }
return;
}

// Detect if browser is Netscape 3 + or IE 4 +.
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";
// Create image objects, preload all active and inactive images.
    if (br== "n3") { 
    cnnon = new Image();
  	cnnon.src = "/SPECIALS/new.specials/cnn.logo.1.gif";
   	specialon = new Image();
    specialon.src = "/SPECIALS/new.specials/indepth.2.gif";
   	cnnoff = new Image();          		
   	cnnoff.src = "/SPECIALS/new.specials/cnn.logo.2.gif"; 		
    specialoff = new Image();          		
    specialoff.src = "/SPECIALS/new.specials/indepth.1.gif"; 		
    }
function turnOn(imageName)
{
  if (document.images)
  {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName)
{
  if (document.images)
  {
http://i.cnn.net/cnn/SPECIALS/2000/columbine.cd/Summary.Files/TOC.ht3.gif
    document[imageName].src = eval(imageName + "off.src");
  }
}
