<!--
var objectrefprevious = null;
var county = new Array(54);

county[0] = ""
county[1] = "Anglesey";
county[2] = "Bedfordshire";
county[3] = "Berkshire";
county[4] = "Borders";
county[5] = "Buckinghamshire";
county[6] = "Cambridgeshire";
county[7] = "Central";
county[8] = "Clywd";
county[9] = "Cornwall";
county[10] = "Cumbria";
county[11] = "Derbyshire";
county[12] = "Devon";
county[13] = "Dorset";
county[14] = "Dumfries &amp; Galloway";
county[15] = "Durham";
county[16] = "Dyfed";
county[17] = "East Sussex";
county[18] = "Essex";
county[19] = "Fife";
county[20] = "Glamorgan";
county[21] = "Gloucestershire";
county[22] = "Grampion";
county[23] = "Gwent";
county[24] = "Gwynedd";
county[25] = "Hampshire";
county[26] = "Herefordshire";
county[27] = "Hertfordshire";
county[28] = "Highlands";
county[29] = "Isle of Man";
county[30] = "Kent";
county[31] = "Lancashire";
county[32] = "Leicestershire";
county[33] = "Lincolnshire";
county[34] = "London";
county[35] = "Lothian";
county[36] = "Norfolk";
county[37] = "Northamptonshire";
county[38] = "Northern Ireland";
county[39] = "Northumberland";
county[40] = "Nottinghamshire";
county[41] = "Oxfordshire";
county[42] = "Powys";
county[43] = "Shropshire";
county[44] = "Somerset";
county[45] = "Staffordshire";
county[46] = "Strathclyde";
county[47] = "Suffolk";
county[48] = "Surrey";
county[49] = "Tayside";
county[50] = "Warwickshire";
county[51] = "West Sussex";
county[52] = "Wiltshire";
county[53] = "Worcestershire";
county[54] = "Yorkshire";

NS4 = (document.layers) ? 1 : 0 ;
IE4 = (document.all) ? 1 : 0 ;
NS6 = (document.getElementById && !document.all) ? 1 : 0 ;  


function ShowCounty(n) {
var temp = "area" + n ;
obj = getobj(temp) ;

 if (NS4) {
  obj.visibility="show" ;
       } else {
  obj.style.visibility="visible" ;
 }
}

function HideCounty(n) {
var temp = ""
for (var i = 0 ; i < county.length ; i++) {
  temp = "area" + n ;
  obj = getobj(temp) ;
 if (NS4) {
  obj.visibility = "hide";
      } else {
  obj.style.visibility = "hidden";
 }
}
}

function getobj(name) {
if (NS4) {
return document.layers[8].document.layers[name] ;
}
if (IE4) {
return eval('document.all.' + name) ;
}
if (NS6) {
return document.getElementById(name) ;
}
return null;
}

function ChangeLoc(){
parent.location=document.formloc.selectloc.options[document.formloc.selectloc.selectedIndex].value
}
//-->
