var page = "http://www.emergentuniverse.org/#" + id;
try {
	location.replace( page );
} catch(err) {
	try {
		location.href = page;
	} catch(err) {}
}
// "id" is defined locally in each html page
//alert(page)
/// first, try replace method to remove this page from the history object; if that fails, set location directly
