<!--hide this script from non-javascript-enabled browsers

//////////////////////////////////////////////////////////
//
// Joint Earth Sciences Education Initiative
//
// Produced by Presenting Science
//  www.PresentingScience.com
//
// Copyright (C) Presenting Science
//
//////////////////////////////////////////////////////////

function redirectURL(title, URL)
{
	this.title = title;
	this.URL = URL;
}

var redirectCount = 0;
var redirectList = new Array;

function buildRedirectList()
{
	redirectList[redirectCount++] = new redirectURL("Chemical weathering of limestone: my breath and rock chippings from the car park", "chemweat");
	redirectList[redirectCount++] = new redirectURL("The chemistry of limestone", "chemlim");  
	redirectList[redirectCount++] = new redirectURL("Crystal size and cooling rate: fast and slow cooling of lead iodide", "cooling");
	redirectList[redirectCount++] = new redirectURL("Earth’s crust versus the prep. room – why the differences?", "elements");
	redirectList[redirectCount++] = new redirectURL("The folding of rocks: lab simulations", "folding");
	redirectList[redirectCount++] = new redirectURL("Igneous processes: matching the evidence they leave behind", "matchit");    
	redirectList[redirectCount++] = new redirectURL("Igneous rocks: completing the 3D picture", "igneous");
	redirectList[redirectCount++] = new redirectURL("The limestone inquiry, 21st Century", "limeenq");    
	redirectList[redirectCount++] = new redirectURL("Limestone in your everyday life", "limeston");    
	redirectList[redirectCount++] = new redirectURL("Metamorphic modelling: simulating metamorphic processes", "meta");    
	redirectList[redirectCount++] = new redirectURL("Minerals, elements and the Earth’s crust", "minerals");    
	redirectList[redirectCount++] = new redirectURL("Plate riding: how is the plate you are on moving now?", "platerid");    
	redirectList[redirectCount++] = new redirectURL("Rock cycle in the lab: Earth products and the processes that link them", "rockcycl");    
	redirectList[redirectCount++] = new redirectURL("Sedimentary rock from sand: syringe simulation", "sedimen");    
	redirectList[redirectCount++] = new redirectURL("Separating mixtures: how we concentrate natural materials", "separate");
	redirectList[redirectCount++] = new redirectURL("Sequencing of rocks: what was the order of events?", "sequenc");
	redirectList[redirectCount++] = new redirectURL("Weathering and erosion: simulating rock attack in the lab", "weather");
	redirectList[redirectCount++] = new redirectURL("Will my gravestone last?: an investigative graveyard visit", "graves"); 
	redirectList[redirectCount++] = new redirectURL("Volcano in the lab: a wax volcano in action", "volcano"); 
	redirectList[redirectCount++] = new redirectURL("The age of the Earth: can you believe everything you read?", "canyou");
	redirectList[redirectCount++] = new redirectURL("The age of the Earth: the changing views of science", "earthage");
	redirectList[redirectCount++] = new redirectURL("Dangerous Earth: a plate tectonic story", "danger");
	redirectList[redirectCount++] = new redirectURL(" Earth’s crust: thinner than you think", "earthcru");
	redirectList[redirectCount++] = new redirectURL("Earthquake waves: the ‘find the earthquake’ team challenge", "earthqu");
	redirectList[redirectCount++] = new redirectURL("Earthquakes or nuclear explosions?: seismic clues to dirty deeds", "nuclear");
	redirectList[redirectCount++] = new redirectURL("Investigating the Earth: the ‘find the Mars bar’ challenge", "marsbar");
	redirectList[redirectCount++] = new redirectURL("Magnetic patterns: ocean floor pattern plotting", "magpat");
	redirectList[redirectCount++] = new redirectURL("Magnetic stripes on the ocean floor: a lab simulation", "magflip");
	redirectList[redirectCount++] = new redirectURL("Mantle convection moving plates: the golden syrup / hobnob teacher demonstration", "mantle");
	redirectList[redirectCount++] = new redirectURL("The plate tectonic story: a scientific jigsaw", "onmove");
	redirectList[redirectCount++] = new redirectURL("Solid mantle in full flow: the DIY potty putty simulation", "pottyp");
	redirectList[redirectCount++] = new redirectURL("Structure of the Earth: probing anomalous balls", "anom");
	redirectList[redirectCount++] = new redirectURL("Structure of the Earth: the story of the waves", "waves");
	redirectList[redirectCount++] = new redirectURL("Structure of the Earth: teacher demonstrating seismic evidence for the core", "shadowz");
	redirectList[redirectCount++] = new redirectURL("Carbon cycle: exchanging carbon dioxide between the atmosphere and ocean", "oceans");
	redirectList[redirectCount++] = new redirectURL("Carbon cycle in the lab: carbon products and the processes that link them", "lab");
	redirectList[redirectCount++] = new redirectURL("Carbon cycle: releasing dinosaur breath in the lab", "dinosaur");
	redirectList[redirectCount++] = new redirectURL("Carbon cycle: where is this crucial carbon?", "crucial");
	redirectList[redirectCount++] = new redirectURL("The carbon dioxide greenhouse - is it effective?: a lab ICT test", "co2green");
	redirectList[redirectCount++] = new redirectURL("Cycling carbon: seeing how plants use carbon dioxide in the lab", "plants");
	redirectList[redirectCount++] = new redirectURL("Protecting the Earth: how big is your ecological footprint?", "ecofoot");
	redirectList[redirectCount++] = new redirectURL("Tree rings: a climate record of the past", "treering");
	redirectList[redirectCount++] = new redirectURL("Amazing Earth: facts that fascinate", "fascinat");
}

var name = unescape(parent.location.search.substring(1));
if (name.length>0) {
	buildRedirectList();
	var i=0;
	//document.open();
	for (i=0; i<redirectCount; i++)
	{
		
		if (redirectList[i].title == name || redirectList[i].URL == name) 
			location = redirectList[i].URL+"/index.htm";
			
		//document.writeln("<a target='_blank' href='http://www.presentingscience.com/jesei/?"+redirectList[i].URL+"'> JESEI: " + redirectList[i].title + "</a><br>");

		
	}
	//document.close();
}
else {
	location = "topics.htm";
}

// stop hiding -->

