<!--
function JumpToIt(list)
{
	var selection=list.options[list.selectedIndex].value
	if (selection !="none")
		location.href=selection
		
}
document.write('<form>');
document.write('<select width="20" onChange="JumpToIt(this)">');
document.write('<option value="none">---MUSEUMS---</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/museums_american.htm">American Museum</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/museums_athelstan.htm">Athelstan Museum</option>'); 
document.write('<option value="http://www.thecotswoldgateway.co.uk/museums_banbury.htm">Banbury Museum</option>'); 
document.write('<option value="http://www.thecotswoldgateway.co.uk/corinium-museum.htm">Corinium Museum</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/museums_nature.htm">Nature In Art Museum</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/museums_WottonHeritage.htm">Wotton-under-Edge Heritage Centre</option>');  
document.write('</select>');
document.write('</form>');
//-->






















