var region=new Array()

region[0]='Select Region'
region[1]='Central'
region[2]='Eastern'
region[3]='London'
region[4]='Northern'
region[5]='Southern'
region[6]='Western'
region[7]='West Country'

region[8] ='Scotland'
region[9] ='Wales'
region[10]='Northern Ireland'

var county=new Array()

county[1] ='s_eng/bucks.asp">Buckinghamshire'
county[2] ='s_eng/derbys.asp">Derbyshire'
county[3] ='s_eng/leics.asp">Leicestershire'
county[4] ='s_eng/nhants.asp">Northamptonshire'
county[5] ='s_eng/notts.asp">Nottinghamshire'
county[6] ='s_eng/oxon.asp">Oxfordshire'
county[7] ='s_eng/syork.asp">South Yorkshire'
county[8] ='s_eng/staffs.asp">Staffordshire'
county[9] ='s_eng/warwks.asp">Warwickshire'
county[10]='s_eng/wmids.asp">West Midlands'

county[11]='s_eng/beds.asp">Bedfordshire'
county[12]='s_eng/cambs.asp">Cambridgeshire'
county[13]='s_eng/essex.asp">Essex'
county[14]='s_eng/herts.asp">Hertfordshire'
county[15]='s_eng/lincs.asp">Lincolnshire'
county[16]='s_eng/norfolk.asp">Norfolk'
county[17]='s_eng/rutland.asp">Rutland'
county[18]='s_eng/suffolk.asp">Suffolk'

county[19]='s_eng/london.asp">Greater London'

county[20]='s_eng/cumb.asp">Cumbria (Lakes)'
county[21]='s_eng/durham.asp">Durham'
county[22]='s_eng/eyork.asp">East Yorkshire'
county[23]='s_eng/gtman.asp">Greater Manchester'
county[24]='s_eng/lancs.asp">Lancashire'
county[25]='s_eng/nthumb.asp">Northumberland'
county[26]='s_eng/nyork.asp">North Yorkshire'
county[27]='s_eng/t_and_w.asp">Tyne & Wear'
county[28]='s_eng/wyork.asp">West Yorkshire'
county[29]='s_eng/iom.asp">Isle of Man'

county[30]='s_eng/berks.asp">Berkshire'
county[31]='s_eng/esusx.asp">East Sussex'
county[32]='s_eng/hants.asp">Hampshire'
county[33]='s_eng/kent.asp">Kent'
county[34]='s_eng/surrey.asp">Surrey'
county[35]='s_eng/wsusx.asp">West Sussex'
county[36]='s_eng/wilts.asp">Wiltshire'
county[37]='s_eng/iow.asp">Isle of Wight'

county[38]='s_eng/ches.asp">Chesire'
county[39]='s_eng/gloucs.asp">Gloucestershire'
county[40]='s_eng/here.asp">Herefordshire'
county[41]='s_eng/mersyd.asp">Merseyside'
county[42]='s_eng/shrops.asp">Shropshire'
county[43]='s_eng/worces.asp">Worcestershire'

county[44]='s_eng/cnwll.asp">Cornwall'
county[45]='s_eng/devon.asp">Devon'
county[46]='s_eng/dorset.asp">Dorset'
county[47]='s_eng/somset.asp">Somerset'


county[48]='s_scot.asp">Click Map to View'
county[49]='s_wales.asp">Click Map to View'
county[50]='s_ire.asp">Click Map to View'

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
}

function change(whichregion, count1, count2, bold){

str = ''

for (var i=count1; i<=count2; i++){

if (i == bold) {
    str = (str + '&nbsp;<A CLASS="bold" HREF="' + county[i] + '</A><BR>');}
  else {
    str = (str + '&nbsp;<A CLASS="menu" HREF="' + county[i] + '</A><BR>');}
} 

if (document.all)
descriptions.innerHTML=('<DIV ID="title">&nbsp;' + whichregion + ':&nbsp</DIV>' + str)
else if (document.layers){
document.d1.document.d2.document.write('<TABLE CELLSPACING=3 CELLPADDING=0 BORDER=0 width=120><TR><TD ID="title">&nbsp;' + whichregion + '&nbsp</TD></TR></TABLE>' + str)
document.d1.document.d2.document.close()
}
}