<!-- 
function ddnav_onsubmit() {
	// Get the destination
	if (document.ddnav.ddnavsel.selectedIndex == 0){
		var newhref= document.ddnav.ddnavsel[document.ddnav.ddnavsel.selectedIndex].value;
	}
	else
	{
		var newpage = document.ddnav.ddnavsel[document.ddnav.ddnavsel.selectedIndex].value;
		// Get the current URL
		var currenthref = new String(document.location.href);
		// Chop off the page
		var currentpath = currenthref.substring(0,currenthref.lastIndexOf("/")+1);
		// Add the new page to the path
		var newhref  = currentpath + newpage;
	}
	
	// Display the new page
	window.location.href = newhref;
	return false;
}
// -->