<!-- Begin SEARCH OPTIONS

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS


var showsearch		= "yes"		// SHOW THE SEARCH FORM


var showtext		= "yes"		// SHOW TEXT ABOVE SEARCH
var searchtext		= "Locations Menu:"	// TEXT ABOVE SEARCH FORM
var bottomspace		= "0"		// FORM BOTTOM SPACE



// COPYRIGHT 2006 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

} 


// SEARCH FORM
   if (showsearch == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="3" border="0" class="printhide"><tr><td class="search-font">')
   if (showtext == "yes") {
document.write(''+searchtext+'<br>')
document.write('</td><td>')
document.write('&nbsp;<br>')
document.write('</td></tr><tr><td>')
}
document.write('<table width=100% cellpadding=4 cellspacing=0 border=0> ')

document.write('<form name=form>')

	document.write('<tr>') 

		document.write('<td nowrap>') 

			document.write('<select name="fieldname" size="1"')

				document.write('onChange="openDir( this.form )">') 

				document.write('<option>Store at: </option>') 
//////////////////////////////JUMP MENU CONTENT
				document.write('<option value=altonfacilities.htm>Alton</option>')								
				
				document.write('<option value=burton-on-trent-facilities.html>Burton-on-Trent</option>')

				document.write('<option value=farehamfacilities.htm>Fareham</option>') 

				document.write('<option value=wightfacilities.htm>Isle of Wight</option>')				

				document.write('<option value=tadleyfacilities.html>Tadley</option>') 				
				
				document.write('<option value=winchesterfacilities.htm>Winchester</option>') 				
//////////////////////////////
			document.write('</select>') 

		document.write('<img src="picts/corner-bottomleft.gif" height="17" width="23" border="0" alt="image"> </td>') 

	document.write('</tr>') 

document.write('</form>') 

document.write('</table>') 

document.write('</td></tr></table>')
document.write('<IMG SRC="picts/spacer.gif" height="'+bottomspace+'" width="30" border="0"><br>');
}



// -- END -->