
<!-- Hide script from old browsers
function toggle(menu) {
 if (document.layers==null) {

 // only toggle the menus if not netscape 4
 if (document.getElementById(menu).style.display=='none') {

 // if menu has no display (none)
 // optional if statement 2: delete if you want multiple menus on at a time
 document.getElementById(menu).style.display='';
} else {
 // menu is expanded
 document.getElementById(menu).style.display='none';
}
}
}
function openMenu(name) {
 if (document.layers==null) {
 catObj=new Object(document.getElementById(name));
 catObj.style.display='';
 active=catObj.getAttribute("id");
}
}
function openMenu2(cat) {
 if (document.layers==null) {
 subcatObj=document.getElementById(cat);
 subcatObj.style.display='';
 active=subcatObj.getAttribute("id");
}
}
// End hiding script from old browsers -->

<!-- Hide script from old browsers
	function ChangePageTo(locationstring) {
		if(locationstring) {
			location = locationstring;
		}
}
// End hiding script from old browsers -->
function checkjavacodeimages() {
	if(window.changeImages) {
		changeImages();
	}
}