// JavaScript Document
// for the jump menu --->

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
// JavaScript Document
// for the showorhide --->
function showorhide(id) {
document.getElementById(id).style.display = "none";
}
// JavaScript Document
// for the showorhide --->
function showorhide(id) {
if (document.getElementById(id).style.display == "none") {
document.getElementById(id).style.display = "block";
} else {
document.getElementById(id).style.display = "none";
}
}

