<!-- 
var big_on;
var sub_on;

if (document.images) {
        big_on = new Image;
        sub_on = new Image;
        big_on.src = "../img/arr1.GIF";
        }

var ie4 = false;

if ((navigator.appName.indexOf("Microsoft") != -1) && (parseInt(navigator.appVersion) >= 4)) {
        ie4 = true;
        }

function changeBig(name) {
        if (document.images) {
                im = eval("document." + name);
                if (im.src == big_on.src) {
                        im.src = "../img/arr2.GIF";
                        if (ie4) {
                                td = im.parentElement.parentElement;
                                t = td.all.tags("u");
                                turnOffText(t[0]);
                                }
                        }
                else {
                        im.src = big_on.src;
                        if (ie4) {
                                td = im.parentElement.parentElement;
                                t = td.all.tags("u");
                                turnOnText(t[0]);
                                }
                        }
                }
        }

function turnOnText(t) {
        if (ie4) {
                t.style.color = "#ffcc00";
                }
        }

function turnOffText(t) {
        if (ie4) {
                t.style.color = "#ffffff";
                }
        }

function turnOffSubText(t) {
        if (ie4) {
                t.style.color = "#cccccc";
                }
}

function chaFrames(loc) {
        window.self.location = loc;
        }	
//-->