function go() {
document.location = document.goMenu.goDropMenu.options[document.goMenu.goDropMenu.selectedIndex].value
}
function showHide(divId) {
	document.getElementById(divId).style.display = (document.getElementById(divId).style.display == "block")?"none":"block"; 	
}

