<!--



function ToggleDisplay(oButton, oItems, idx, count)
{
        Hide(idx, count);
        if ((oItems.style.display == "") || (oItems.style.display == "none"))        {
                oItems.style.display = "block";
                oButton.src = "/images/menu2_01.jpg";
        }        else {
                oItems.style.display = "none";
                oButton.src = "/images/menu2_02.jpg";
        }
        return false;
}

function Hide(idx, count)
{
        for (i = 1; i < count; i++) {
           if (i!=idx) {                t = 'mP'+i+'Items';
                obj = document.getElementById(t);
                obj.style.display = "none";
                mP1Btn.src = "/images/menu2_02.jpg";
           	}
        }
        return false;
}


function onimg(iname,isrc) {

        if (document.images) {
                document.images[iname].src=img[isrc].src;
        }
}


function CheckFrames() {
        if (parent.frames.length == 0) parent.location = "index.htm";
//body onLoad="CheckFames()
}


function ItemsDisplay(oItems) {
        if ((oItems.style.display == "") || (oItems.style.display == "none"))         {
                oItems.style.display = "block";
        }        else {
                oItems.style.display = "none";
        }
        return false;
}


function FormActivate(act) {
        var frm = document.forms.frm;
        frm.action.value = act;
  frm.submit();
}




//-->

