function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function selectall(t,formNr)
	{for(a=0;a<document.forms[formNr].elements.length;a++)
	{if(document.forms[formNr].elements[a].type == 'checkbox' )
	{document.forms[formNr].elements[a].checked = document.forms[formNr].killAll.checked;
}}}

function Show_Stuff(Click_Menu)
// Function that will swap the display/no display for 
// all content within span tags
{
if (Click_Menu.style.display == "none")
{
Click_Menu.style.display = "";
}
else
{
Click_Menu.style.display = "none";
}
}

function navigate(Click_Menu,imgID)
// Function that will swap the display/no display for 
// all content within span tags
{
if (Click_Menu.style.display == "none")
{
Click_Menu.style.display = "";
document.getElementById(imgID).src = 'images/minus.gif';
}
else
{
Click_Menu.style.display = "none";
document.getElementById(imgID).src = 'images/plus.gif';
}

}