﻿<!--
function JumpToIt(list)
{
	var selection=list.options[list.selectedIndex].value
	if (selection !="none")
		location.href=selection
		
}
document.write('<form>');
document.write('<select width="25" onChange="JumpToIt(this)">');
document.write('<option value="none">MORE COTSWOLD CHURCHES</option>');
document.write('<option value="none">---CHURCHES---</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches1.htm">St Mary the Virgin-Westwood</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches2.htm">St Lawrence-Lechlade</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches3.htm">St Edwards-Stow on the Wold</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches4.htm">All Saints-Crudwell</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches5.htm">St marys-Chastleton</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches6.htm">Holy Trinity-Minchinhampton</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches7.htm">All Saints-Somerford Keynes</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches8.htm">All Saints-Down Ampney</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches9.htm">All Saints-Kemble</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches11.htm">St Marys-Lower Slaughter</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches10.htm">St John the Baptist-Cirencester</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches12.htm">All Hallows-South Cerney</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/churches13.htm">Holly Cross-Ashton Keynes</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/st-johns-inglesham.htm">St John the Baptist-Inglesham</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/st-mary-the-virgin-buscot.htm">St Mary the Virgin-Buscot</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/st-leonards-charlecote.htm">St Leonards-Charlecote</option>');
document.write('</select>');
document.write('</form>');
//-->