<!-- Hide me please!
function jump(form) {

	var myindex=form.menu.selectedIndex
		
		if(form.menu.options[myindex].value != "0") {
			window.open(form.menu.options[myindex].value, target="_self");
		}//end if statement
}//end function


function newWindow(picPopUp) {

	picWindow = window.open(picPopUp, "adamsWin", "top=100,left=350,width=375,height=350")
		
		picWindow.focus()

}//end function


//-->