// JavaScript Document
function chgMnu(p_obj,p_on){ 
	if (p_obj.className != "mnuSel") {
		if (p_on)
			p_obj.className="mnuOn";
		else
			p_obj.className="mnuOff";
	}//if
	}

function chgSubMnu(p_obj,p_on){ 
	if (p_obj.className != "mnuSubSel") {
		if (p_on)
			p_obj.className="mnuSubOn";
		else
			p_obj.className="mnuSubOff";
		}
	}

function doMnuClick(p_obj) {
	if (this.document.getElementById("a"+p_obj.id) != undefined)
		this.document.location = this.document.getElementById("a"+p_obj.id).href;
	else
	  alert( "not found: anchor id='a" +p_obj.id+ "'");
  }

function setMnuHere(p_id) {
	if (this.document.getElementById(p_id).className == "mnuSubOff")
		this.document.getElementById(p_id).className="mnuSubSel";
	else
		this.document.getElementById(p_id).className="mnuSel";
	}


