<!--
function JumpToIt(list)
{
	var selection=list.options[list.selectedIndex].value
	if (selection !="none")
		location.href=selection
		
}
document.write('<form>');
document.write('<select width="20" height="20" onChange="JumpToIt(this)">');
document.write('<option value="none">HERE IS A LIST OF COTSWOLD GARDENS</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens.htm">Back To Cotswold Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_abbeyhouse.htm">Abbey House Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/batsfordarboretum.htm">Batsford Arboretum And Wild Life Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_bourton.htm">Bourton House Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_cerney.htm">Cerney House Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_courts.htm">The Courts</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_hidcote.htm">Hidcote Manor Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/kiftsgatecourtgardens.htm">Kiftsgate Court</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_milldene.htm">Mill Dene Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_misarden.htm">Misarden Park Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_rococo.htm">Painswick Rococo Gardens</option>')
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_peto.htm">The Peto Garden at Iford Manor</option>')
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_prior.htm">Prior Park Landscape Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/rodmartonmanor.htm">Rodmarton Manor and Gardens</option>');  
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_stanway.htm">Stanway Water Gardens</option>');  
document.write('<option value="http://www.thecotswoldgateway.co.uk/gardens_trull.htm">Trull House Gardens</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/westonbirtarboretum.htm">Westonbirt Arboretum</option>');
document.write('</select>');
document.write('</form>');
//-->