// Collected JavaScripts for Dervin's Sense-Making Methodology Site
// Created by Eric Lauterbach
// Updated: Jan. 28, 2004

// PLEASE EXERCISE CAUTION WHEN EDITING

function jumpToLocationInSite (newLocation) {
	nextLocation = 'http://communication.sbs.ohio-state.edu/sense-making/AAauthors/authorlist' + newLocation + '.html';
	if (nextLocation != "") {
			location.href = nextLocation;
	}
}

function jumpToLocationOnPage (newLocation) {
	nextLocation = '#' + newLocation;
	if (nextLocation != "") {
			location.href = nextLocation;
	}
}