<!-- Begin
	// All three functions needed for showHide thing
	function MM_findObj(n, d) { //v4.0
	  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
		d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	  if(!x && document.getElementById) x=document.getElementById(n); return x;
	}


	function MM_showHideLayers() { //v3.0
	  var i,p,v,obj,args=MM_showHideLayers.arguments;

	  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
		if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
		obj.visibility=v; }
	}

	function MM_showHideMaps() { //v3.0
	  var i,p,v,obj,args=MM_showHideMaps.arguments;

	  if (locked)	{
		  return;
	  } else {
		  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
			if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
			obj.visibility=v; }
	  }
	}



	// Set-up and fill the arrays for the drop downs
	var sizeOptions1 = new Array();
	var sizeOptions2 = new Array();
	var sizeOptions3 = new Array();
	var sizeOptions4 = new Array();
	var sizeOptions5 = new Array();

	sizeOptions1[0] = new Option("0 - 5,000 Square Feet", '0 - 5,000 Square Feet');
	sizeOptions1[1] = new Option("5,001 - 10,000 Square Feet", '5,001 - 10,000 Square Feet');
	sizeOptions1[2] = new Option("10,001 - 20,000 Square Feet", '10,001 - 20,000 Square Feet');
	sizeOptions1[3] = new Option("20,001 - 50,000 Square Feet", '20,001 - 50,000 Square Feet');
	sizeOptions1[4] = new Option("50,001+ Square Feet", '50,001+ Square Feet');

	sizeOptions2[0] = new Option("0 - 2,000 Square Feet", '0 - 2,000 Square Feet');
	sizeOptions2[1] = new Option("2,001 - 5,000 Square Feet", '2,001 - 5,000 Square Feet');
	sizeOptions2[2] = new Option("5,001 - 10,000 Square Feet", '5,001 - 10,000 Square Fee');
	sizeOptions2[3] = new Option("10,001 - 20,000 Square Feet", '10,001 - 20,000 Square Feet');
	sizeOptions2[4] = new Option("20,001+ Square Feet", '20,001+ Square Feet'); 

	sizeOptions3[0] = new Option("up to £250,000", 'up to £250,000');
	sizeOptions3[1] = new Option("up to £500,000", 'up to £500,000');
	sizeOptions3[2] = new Option("up to £1 million", 'up to £1 million');
	sizeOptions3[3] = new Option("over £1 million", 'over £1 million');

	sizeOptions4[0] = new Option("0 - 1,000 Square Feet", '0 - 1,000 Square Feet');
	sizeOptions4[1] = new Option("1,001 - 5,000 Square Feet", ',001 - 5,000 Square Feet');
	sizeOptions4[2] = new Option("5,001+ Square Feet", '5,001+ Square Feet'); 

	sizeOptions5[0] = new Option("0-1 acres", '0-1 acres');
	sizeOptions5[1] = new Option("1-5 acres", '1-5 acres');
	sizeOptions5[2] = new Option("5+ acres", '5+ acres'); 

	// Change the options in the drop down according to which selection they have made
	function replaceOptions(whichSelection, whichObject) {
		if ((whichSelection == "Industrial") || (whichSelection == "Offices")) {
			whichObject.options.length = 0;
			for (i=0; i < sizeOptions1.length; i++){
				whichObject.options[whichObject.options.length] = sizeOptions1[i];
			}	
		}

		if (whichSelection == "Offices") {
			whichObject.options.length = 0;
			for (i=0; i < sizeOptions2.length; i++){
				whichObject.options[whichObject.options.length] = sizeOptions2[i];
			}	
		}

		if (whichSelection == "Retail") {
			whichObject.options.length = 0;
			for (i=0; i < sizeOptions4.length; i++){
				whichObject.options[whichObject.options.length] = sizeOptions4[i];
			}	
		}
	
		if (whichSelection == "Investment") {
			whichObject.options.length = 0;
			for (i=0; i < sizeOptions3.length; i++){
				whichObject.options[whichObject.options.length] = sizeOptions3[i];
			}	
		}

		if ((whichSelection == "Development Sites") || (whichSelection == "Others")) {
			whichObject.options.length = 0;
			for (i=0; i < sizeOptions5.length; i++){
				whichObject.options[whichObject.options.length] = sizeOptions5[i];
			}	
		}
	}

	function ColOn(SpanColour) {
		SpanColour.style.backgroundColor='#DDDDDD';
	}


	function ColOff(SpanColour) {
		SpanColour.style.backgroundColor='#EEEEEE';
	}

	function Col2On(SpanColour) {
		SpanColour.style.backgroundColor='#DDDDDD';
	}


	function Col2Off(SpanColour) {
		SpanColour.style.backgroundColor='#EEEEEE';
	}



//  End -->
