﻿	var lanPt1 = new VELatLong(43.155414, -88.18365);
	var lanPt2 = new VELatLong(43.155517, -88.158722); 
	var lanPt3 = new VELatLong(43.168239, -88.158156);
	var lanPt4 = new VELatLong(43.168156, -88.143564);
	var lanPt5 = new VELatLong(43.140928, -88.144572); 
	var lanPt6 = new VELatLong(43.140978, -88.162297);
	var lanPt7 = new VELatLong(43.142728, -88.162222);
	var lanPt8 = new VELatLong(43.14275, -88.163153);
	var lanPt9 = new VELatLong(43.143642, -88.163117);
	var lanPt10 = new VELatLong(43.143661, -88.164047);
	var lanPt11 = new VELatLong(43.144611, -88.164008);
	var lanPt12 = new VELatLong(43.144594, -88.168992);
	var lanPt13 = new VELatLong(43.145442,-88.170347);
	var lanPt14 = new VELatLong(43.1450,-88.1710);
	var lanPt15 = new VELatLong(43.14535,-88.17155);
	var lanPt16 = new VELatLong(43.1389, -88.1843);
	
// ** Menomonee Falls Portion that we are primary agency
	// North of Lannon
	var mfPt1 = new VELatLong(43.19261, -88.18231); 
	var mfPt2 = new VELatLong(43.19236, -88.16195);
	var mfPt3 = new VELatLong(43.170078,-88.162933);
	var mfPt4 = new VELatLong(43.169983,-88.144575);
	var mfPt5 = new VELatLong(43.1691, -88.1451); 
	//*var mfPt6 = new VELatLong(43.168161,-88.145133);
	var mfPt6 = new VELatLong(43.168156, -88.143564);
	//South & East of Lannon
	var mfPt7 = new VELatLong(43.148192,-88.144339);
	var mfPt8 = new VELatLong(43.148464,-88.121617);
	var mfPt9 = new VELatLong(43.143658,-88.121756);
	var mfPt10 = new VELatLong(43.143658,-88.12725);
	var mfPt11 = new VELatLong(43.133833,-88.12725); //not used - reference only for extrapolation of #10
	var mfPt12 = new VELatLong(43.128381,-88.12725);
	var mfPt13 = new VELatLong(43.128381,-88.1525);
	var mfPt14 = new VELatLong(43.104581,-88.1525);
	var mfPt15 = new VELatLong(43.104625,-88.185531);

// ** Menomonee Falls portion that we are AMAd for structure fires (W of Pilgrim Rd)
	var mfPt16 = new VELatLong(43.191881,-88.103278); //Pilgrim at 'Q'
	var mfPt17 = new VELatLong(43.104656,-88.105672); //Pilgrim at 'K'

	
	
	
	
function Lannon()
{
	var borLannon = new VEShape(VEShapeType.Polygon,[
		lanPt1,lanPt2,lanPt3,lanPt4,lanPt5,lanPt6,lanPt7,lanPt8,
		lanPt9,lanPt10,lanPt11,lanPt12,lanPt13,lanPt14,lanPt15,lanPt16]);
	borLannon.SetLineColor(new VEColor(0,255,0,1));
	borLannon.SetLineWidth(3);
	map.AddShape(borLannon);
	borLannon.SetFillColor(new VEColor(255,255,255,0));
	borLannon.HideIcon();
	borLannon.SetZIndex = (null, 99);
}

function amaMF()
{
	var borAMA1 = new VEShape(VEShapeType.Polygon,[
		lanPt1,mfPt1,mfPt2,mfPt3,mfPt4,mfPt6,mfPt7,mfPt8,mfPt9,mfPt10,mfPt12,mfPt13,mfPt14,mfPt15]); // *** Removed mfPt5 from natural order
	borAMA1.SetLineColor(new VEColor(255,255,0,1));
	borAMA1.SetLineWidth(3);
	map.AddShape(borAMA1);
	borAMA1.SetFillColor(new VEColor(255,255,255,0));
	borAMA1.SetZIndex = (null, 98);
	borAMA1.HideIcon();
}

function strMF()
{
	var borSF = new VEShape(VEShapeType.Polygon,[
		mfPt2,mfPt16,mfPt17,mfPt14,mfPt13,mfPt12,mfPt10,mfPt9,mfPt8,mfPt7,mfPt6,mfPt4,mfPt3]); // *** Removed mfPt5 from natural order
	borSF.SetLineColor(new VEColor(255,0,0,1));
	borSF.SetLineWidth(3);
	map.AddShape(borSF);
	borSF.SetFillColor(new VEColor(255,255,255,0));
	borSF.SetZIndex = (null, 97);
	borSF.HideIcon();
}















