﻿
function selectImages(ctrl) {
	var page = ctrl.options[ctrl.selectedIndex].value;
	if (page != "")
		document.location = page;
}

document.writeln("<select style='width: 140px' onchange='selectImages(this);'>");
document.writeln("<option value=''>-- Select Images --</option>");
document.writeln("<option value='images/slideshow1/index.htm'>Uganda Mission 1</option>");
document.writeln("<option value='images/slideshow2/index.htm'>Uganda Mission 2</option>");
document.writeln("<option value='images/slideshow3/index.htm'>Uganda Mission 3</option>");
document.writeln("<option value='images/slideshow4/index.htm'>Uganda Mission 4</option>");
document.writeln("<option value='images/slideshow5/index.htm'>Uganda Mission 5</option>");
document.writeln("<option value='images/family/index.htm'>The Leber Family</option>");
document.writeln("<option value='images/Northern_Uganda/index.htm'>Lost Generation</option>");
document.writeln("<option value='images/wildlife/index.htm'>Wildlife Gallery</option>");


document.writeln("</select><br>");
