<!--
// 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") {



    }

// Function to "activate" images.
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to "deactivate" images.
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}


function mouseovertr (o){
	o.style.backgroundColor= "#BB2223";
	o.style.cursor="hand";
	o.style.borderWidth='0.01cm';
}

function mouseouttr(o){
	//o.style.backgroundColor="#FAFAFA";
	o.style.backgroundColor="";
	o.style.borderColor="";
	o.style.borderWidth='0.0cm';
}

function mouseovertd (o){
	o.style.borderStyle="solid";
	o.style.borderColor="#111111";
	o.style.color="#C0C0C0";
	o.style.borderWidth='0.01cm';
	
}

function mouseouttd (o){
	//o.style.color="#C0C0C0";
	//o.style.borderColor="#FAFAFA";
	o.style.borderColor="";
	o.style.borderWidth='0.0cm';
}


// -->