
function gotoGallery(screen){
	var URL = "";

	if (screen == "japan"){
		URL = "http://global-adventures.com/2005_01_Japan";
	}
	
	if (screen == "nl"){
		URL = "http://global-adventures.com/2008_05_Netherlands";
	}
	if (screen == "national_day"){
		URL = "http://global-adventures.com/2008_05_Norwegian_Day";
	}
	if (screen == "fire_rainbow"){
		URL = "http://global-adventures.com/2007_12_Norway_fire_rainbow";
	}
	if (screen == "fireworks"){
		URL = "http://global-adventures.com/2007_Norway_New_Year";
	}
	if (screen == "polar_bear"){
		URL = "http://global-adventures.com/2007_11_Norway_Svalbard";
	}
	if (screen == "architecture"){
		URL = "http://global-adventures.com/2008_UK_Feb_PhD_seminar";
	}
	if (screen == "womad"){
		URL = "http://global-adventures.com/2008_07_WOMAD";
	}
	if (screen == "marcin"){
		URL = "http://global-adventures.com/2008_09_Marcin_visit";
	}
	if (screen == "lofoten"){
		URL = "http://global-adventures.com/2009_06_Norway_Lofoten";
	}
	win = window.open(URL);
	win.document.close();
}


