<!--
    var bV=parseInt(navigator.appVersion);
    IE4 = (document.all) ? 1 : 0;
    NS4 = (document.layers) ? 1 : 0;
    ver4 = (IE4 || NS4) ? 1 : 0;

    if (ver4) 
    {
        firstIm = "<IMG SRC='images/navon.gif' USEMAP='#mpMenu' BORDER=0>";
        	arPopups = new Array()
    }
//arPopups
    function setBeginEnd(which,from,to) {
        arPopups[which] = new Array();
        arPopups[which][0] = from;
        arPopups[which][1] = to;
    }
    if (ver4) {
        setBeginEnd(1,2,130);
		setBeginEnd(2,131,243);
        setBeginEnd(3,245,377);
        setBeginEnd(4,378,469);
        setBeginEnd(5,471,558);
		setBeginEnd(6,558,604);		
    }

    clTop = 0;
    clBot = 19;

//remaining scripts

//arPopups
    function mapOver(which,on) {
        if (!ver4) { return }
        if (IE4) { whichEl = document.all.elMenuOver.style }
            else { whichEl = document.elMenu.document.elMenuOver };

        if (!on) { whichEl.visibility = "hidden"; return }

        clLeft = arPopups[which][0];
        clRight = arPopups[which][1];
        
  	if (NS4) {
            whichEl.clip.left = clLeft;
            whichEl.clip.right = clRight;
	}
	else {
            whichEl.clip = "rect(" + clTop + " " + clRight + " " + clBot + " " + clLeft + ")";
	}

        whichEl.visibility = "visible" 
    }
//-->