

function ShowHideMenu(NavTopicID){
imageName = document.images['symbol'+ NavTopicID];
menuName = document.all['NavTopic'+NavTopicID];
	if(menuName ){
		if(menuName.style.display=='block'){
			// hide show the menu
			menuName.style.display='none';
			// if there is an image change to the minum
			if(imageName){
				//alert(document.images['symbol'+ sectionID].src);
				imageName.src='/images/nav_bullet.gif';
			}
		}
		
		else{
			// add the sectionID to the array
			menuName.style.display='block';
			if(imageName){
				imageName.src='/images/nav_bullet_dn.gif';
			}
		}
	}
}
	
function formHandler00(form_os){
var URL = document.form_os.os.options[document.form_os.os.selectedIndex].value;
window.location.href = URL;
}
	
function formHandler01(form_intel_pentium_4){
var URL = document.form_intel_pentium_4.intel_pentium_4_spec.options[document.form_intel_pentium_4.intel_pentium_4_spec.selectedIndex].value;
window.location.href = URL;
}

function formHandler02(form_intel_xeon){
var URL = document.form_intel_xeon.intel_xeon_spec.options[document.form_intel_xeon.intel_xeon_spec.selectedIndex].value;
window.location.href = URL;
}

function formHandler03(form_amd_opteron){
var URL = document.form_amd_opteron.amd_opteron_spec.options[document.form_amd_opteron.amd_opteron_spec.selectedIndex].value;
window.location.href = URL;
}

function formHandler04(form_sun_sparc){
var URL = document.form_sun_sparc.sun_sparc_spec.options[document.form_sun_sparc.sun_sparc_spec.selectedIndex].value;
window.location.href = URL;
}

function formHandler05(form_firewalling){
var URL = document.form_firewalling.firewalling.inputs[document.form_firewalling.firewalling.selectedIndex].value;
window.location.href = URL;
}
function formHandler06(form_bandwidth){
var URL = document.form_bandwidth.bandwidth.inputs[document.form_bandwidth.bandwidth.selectedIndex].value;
window.location.href = URL;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
		 window.open(theURL,winName,features);
	}