// JavaScript Document
function f_navToggle(idname1, idname2) {
if (document.getElementById) {
// ================ SHOW DIV ================= //
		document.getElementById("p1").style.display = "none";
		document.getElementById("p2").style.display = "none";
		document.getElementById("p3").style.display = "none";
		document.getElementById(idname1).style.display = "block";
// ================ CHANGE CLASS ================= //
		document.getElementById("item1").className = "normal";
		document.getElementById("item2").className = "normal";
		document.getElementById("item3").className = "normal";
		document.getElementById(idname2).className = "selected";
	}
else if (document.all) {
// ================ SHOW DIV ================= //
		document.all("p1").style.display = "none";
		document.all("p2").style.display = "none";
		document.all("p3").style.display = "none";
		document.all(idname1).style.display = "block";
// ================ CHANGE CLASS ================= //
		document.all("item1").className = "normal";
		document.all("item2").className = "normal";
		document.all("item3").className = "normal";
		document.all(idname2).className = "selected";
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  childWindow=window.open(theURL,winName,features);
  childWindow.focus();
}
