
function leapto(form) {
	var myindex=form.dest.selectedIndex
	parent.location.href=(form.dest.options[myindex].value);
	// You can output to ANY frame using:  parent.[framename].location.href
} // end leapto

function selectLink(id) {
	element = document.getElementById(id);	
	element.className = 'nSelected';
} // end selectNavLink