// JavaScript Document
<!-- Hide from non-javascript browsers

var bn = navigator.appName;
var bv = parseInt(navigator.appVersion);
var ic = ((bn == "Netscape" && bv >= 3) || (bn == "Microsoft Internet Explorer" && bv >= 4));

if (ic) {
   	ImageList = new Array( "abo", "ent", "info" );

    var img = ''
    var imgh = ''
			
    Images = new Array()
				
    for (i = 0; i < ImageList.length; i++) {
        img = ImageList[i];
							imgh = ImageList[i] + '-over';
							
	Images[img] = new Image()
	Images[img].src = "images/" + img + ".gif"
	
	Images[imgh] = new Image()
	Images[imgh].src = "images/" + img + "-over.gif"
    }
}

function highlight(a) {
    if (ic) {
 img = a + '-over';
	document.images[a].src = Images[img].src;
 
    }
}

function delight(a) {
    if (ic) {
		  document.images[a].src = Images[a].src;
				
				
    }
}

// -->