<!-- // Begin
function leapto(form) {
	var myindex=form.dest.selectedIndex
	if (form.dest.options[myindex].value) {
		parent.top.location.href=(form.dest.options[myindex].value);
		form.dest.selectedIndex=form.dest.options[0].value;
	} else {
		form.dest.selectedIndex=form.dest.options[0].value;
	}
}
// End -->

