ASCII32,18,10,2013,11:19,48
W,BEGIN,"ControlAllocation","ControlAllocation",""
	TEMPLATE,"",0,0,0,0,0,0,0,0,0,0,0,0,1,0,0
	POSITION,0,-1
	SIZE,1600,900,1600,900,0,0,0,1680,1050,1588,869
	BACKCOLOR,96,96,96,0,32,0
	TITLE,0,"ControlAllocation","ControlAllocation"
	STYLE,1,1,1,1,0,1,0,1,1,1,1,1,1,0,0,0,0
	GRID,1,1,8,8,0,0,0,0,0,0
	LAYERS,65535
	RIGHTS,0,1,0.000000,64.000000,1,65535,0,0
	INCLUDED,0,0,0,0,0
	LINK,1,"","","",""
	LINK,2,"","","",""
	LINK,3,"","","",""
	LINK,4,"","","",""
	LINK,5,"","","",""
	LINK,6,"","","",""
	LINK,7,"","","",""
	LINK,8,"","","",""
	LINK,9,"","","",""
	LINK,10,"","","",""
	TABS,0,3,0,0,100,100,0,0,-1,0,16,16,0,FONT,1,FONT,1
	NAV,0,0,0,100,100
	BACKBMP,"",0,0
	BACKOBJECT,"",0,0
	BEFORE,"","","",""
	EVENTS,1
	BINOBJ,"ControlAllocation.binary"
W,END
VBA_HOSTPROJECT,BEGIN
	
	Private Sub btnApplyChanges3_Click()
	
	Dim sSelection(5, 2) As String
	
	sSelection(0, 0) = "GLG"
	sSelection(0, 1) = cmbBoxGLG.selectedUserData
	sSelection(1, 0) = "MYD"
	sSelection(1, 1) = cmbBoxMYD.selectedUserData
	sSelection(2, 0) = "SKN"
	sSelection(2, 1) = cmbBoxSKN.selectedUserData
	sSelection(3, 0) = "SUN"
	sSelection(3, 1) = cmbBoxSUN.selectedUserData
	sSelection(4, 0) = "SXS"
	sSelection(4, 1) = cmbBoxSXS.selectedUserData
	
	
	If modControlAllocation.Authenticate = True Then
	    Call modControlAllocation.ProcessSelection(sSelection)
	    Call SetColors("GLG", cmbBoxGLG, cmbBoxGLG.selectedIndex)
	    Call SetColors("MYD", cmbBoxMYD, cmbBoxMYD.selectedIndex)
	    Call SetColors("SKN", cmbBoxSKN, cmbBoxSKN.selectedIndex)
	    Call SetColors("SUN", cmbBoxSUN, cmbBoxSUN.selectedIndex)
	    Call SetColors("SXS", cmbBoxSXS, cmbBoxSXS.selectedIndex)
	End If
	
	Erase sSelection
	
	End Sub
	
	Private Sub cmbBoxGLG_OnSelectionChanged(ByVal nindex As Long)
	
	Call SetColors("GLG", cmbBoxGLG, nindex)
	
	End Sub
	
	Private Sub cmbBoxMYD_OnSelectionChanged(ByVal nindex As Long)
	
	Call SetColors("MYD", cmbBoxMYD, nindex)
	
	End Sub
	
	Private Sub cmbBoxSKN_OnSelectionChanged(ByVal nindex As Long)
	
	Call SetColors("SKN", cmbBoxSKN, nindex)
	
	End Sub
	
	Private Sub cmbBoxSUN_OnSelectionChanged(ByVal nindex As Long)
	
	Call SetColors("SUN", cmbBoxSUN, nindex)
	
	End Sub
	
	Private Sub cmbBoxSXS_OnSelectionChanged(ByVal nindex As Long)
	
	Call SetColors("SXS", cmbBoxSXS, nindex)
	
	End Sub
	
	Private Sub SetColors(asLineView As String, agCmbBox As AIComboCtrl, nindex)
	
	Dim bResult As Boolean
	
	If FrontVue.Variables("CONTROL.WS." + asLineView + ".CONTROL") <> agCmbBox.getUserData(nindex) Then
	    bResult = agCmbBox.SetColors(2, 0, 255, 0, 0)
	Else
	    bResult = agCmbBox.SetColors(2, 0, 255, 255, 255)
	End If
	
	End Sub
	
	Private Function Mimic_BeforeClose() As Boolean
	
	End Function
	
	Private Sub Mimic_Open()
	
	Call PopulateComboBox(cmbBoxGLG)
	Call PopulateComboBox(cmbBoxMYD)
	Call PopulateComboBox(cmbBoxSKN)
	Call PopulateComboBox(cmbBoxSUN)
	Call PopulateComboBox(cmbBoxSXS)
	
	cmbBoxGLG.selectedUserData = FrontVue.Variables("CONTROL.WS.GLG.CONTROL")
	cmbBoxMYD.selectedUserData = FrontVue.Variables("CONTROL.WS.MYD.CONTROL")
	cmbBoxSKN.selectedUserData = FrontVue.Variables("CONTROL.WS.SKN.CONTROL")
	cmbBoxSUN.selectedUserData = FrontVue.Variables("CONTROL.WS.SUN.CONTROL")
	cmbBoxSXS.selectedUserData = FrontVue.Variables("CONTROL.WS.SXS.CONTROL")
	
	End Sub
	
	Private Sub PopulateComboBox(asComboBox As AIComboCtrl)
	
	Dim lAddItem As Long
	
	lAddItem = asComboBox.addItem("Centrol WS 1", "CTLWS01")
	lAddItem = asComboBox.addItem("Centrol WS 2", "CTLWS02")
	lAddItem = asComboBox.addItem("Centrol WS 3", "CTLWS03")
	lAddItem = asComboBox.addItem("Centrol WS 4", "CTLWS04")
	lAddItem = asComboBox.addItem("DRS WS 1", "DRSWS01")
	lAddItem = asComboBox.addItem("DRS WS 2", "DRSWS02")
	lAddItem = asComboBox.addItem("DRS WS 3", "DRSWS03")
	lAddItem = asComboBox.addItem("DRS WS 4", "DRSWS04")
	lAddItem = asComboBox.addItem("Geelong WS 1", "GLGWS01")
	lAddItem = asComboBox.addItem("Geelong WS 1", "CTLME01")
	lAddItem = asComboBox.addItem("Geelong WS 1", "DRSME01")
	
	End Sub
VBA_HOSTPROJECT,END
VBA_REFERENCES,BEGIN
	"stdole", 2, 0, "{00020430-0000-0000-C000-000000000046}"
	"MimicControls", 1, 0, "{C959A51F-AAFE-40D5-A4A7-3A00A7AF76B4}"
	"FrontVueEx", 2, 0, "{141E3228-8E65-44D3-9F4F-DD4799D613BB}"
VBA_REFERENCES,END
FONTS,BEGIN
	FONT,1,16,7,700,0,0,"System",0,0
	FONT,2,-21,0,400,0,0,"Arial",0,0
	FONT,3,-32,0,400,0,0,"Arial",0,0
	FONT,4,-21,0,400,0,0,"Arial",0,1
	FONT,5,-27,0,700,0,0,"Arial",0,0
FONTS,END
COLORS,BEGIN
	COLOR,1,0,0,0,0,0,0
	COLOR,2,0,0,0,0,33,0
	COLOR,3,192,192,192,0,0,0
	COLOR,4,128,128,128,0,0,0
	COLOR,5,255,255,255,0,0,0
	COLOR,6,0,0,0,0,0,1
	COLOR,7,255,0,255,0,0,0
COLORS,END
O,BEGIN,R,"Shape1"
	B,1552,32,56,656,1552,32,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
O,END
O,BEGIN,CBX,"cmbBoxGLG"
	B,951,184,1516,217,10,195,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,3,0,COLOR,3,0,COLOR,1,0,COLOR,1
	AST,5,2,COLOR,1,COLOR,3,0,COLOR,5,0,COLOR,5,0,COLOR,4,0,COLOR,4,0
	PP,2,2,"",-1,1,FONT,2,0,COLOR,5,0,COLOR,1
	A,BEGIN,CBXA,"Anim1",0,0,"",""
		PP,"","","","","","","",0,0,0,0
	A,END
O,END
O,BEGIN,CBX,"cmbBoxMYD"
	B,951,274,1516,307,10,195,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,3,0,COLOR,3,0,COLOR,1,0,COLOR,1
	AST,5,2,COLOR,1,COLOR,3,0,COLOR,5,0,COLOR,5,0,COLOR,4,0,COLOR,4,0
	PP,2,2,"",-1,1,FONT,2,0,COLOR,5,0,COLOR,1
	A,BEGIN,CBXA,"Anim1",0,0,"",""
		PP,"","","","","","","",0,0,0,0
	A,END
O,END
O,BEGIN,CBX,"cmbBoxSXS"
	B,951,544,1516,577,10,195,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,3,0,COLOR,3,0,COLOR,1,0,COLOR,1
	PP,2,2,"",-1,1,FONT,2,0,COLOR,5,0,COLOR,1
	A,BEGIN,CBXA,"Anim1",0,0,"",""
		PP,"","","","","","","",0,0,0,0
	A,END
O,END
O,BEGIN,CBX,"cmbBoxSUN"
	B,951,454,1516,487,10,195,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,3,0,COLOR,3,0,COLOR,1,0,COLOR,1
	AST,5,2,COLOR,1,COLOR,3,0,COLOR,5,0,COLOR,5,0,COLOR,4,0,COLOR,4,0
	PP,2,2,"",-1,1,FONT,2,0,COLOR,5,0,COLOR,1
	A,BEGIN,CBXA,"Anim1",0,0,"",""
		PP,"","","","","","","",0,0,0,0
	A,END
O,END
O,BEGIN,T,"Text1"
	B,112,80,288,112,99,122,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,112,80,0,0,FONT,3,"Control Area",37,FONT,4,"Control Area",37
O,END
O,BEGIN,T,"Text2"
	B,512,80,784,112,492,122,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,512,80,0,0,FONT,3,"Current Controller",37,FONT,4,"Current Controller",37
O,END
O,BEGIN,T,"Text3"
	B,1080,80,1352,112,1060,122,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,1080,80,0,0,FONT,3,"Control Selector",37,FONT,4,"Control Selector",37
O,END
O,BEGIN,T,"Text4"
	B,112,184,272,216,100,226,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,112,184,0,0,FONT,5,"Geelong",37,FONT,4,"Geelong",37
O,END
O,BEGIN,T,"Text5"
	B,76,274,308,306,59,316,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,76,274,0,0,FONT,5,"Melbourne Yard",37,FONT,4,"Melbourne Yard",37
O,END
O,BEGIN,T,"Text6"
	B,68,364,316,396,50,406,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,68,364,0,0,FONT,5,"South Kensignton",37,FONT,4,"Southern Cross",37
O,END
O,BEGIN,T,"Text7"
	B,124,454,260,486,114,496,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,124,454,0,0,FONT,5,"Sunshine",37,FONT,4,"Sunshine",37
O,END
O,BEGIN,S,"txtBoxGLGControl"
	B,572,184,720,217,572,217,65535,0,6400,0,1,0,0,0
	PP,"MenuBarControlStatus","CONTROL.WS.GLG",572,184,720,217,1,0,0,1,0,0
O,END
O,BEGIN,S,"txtBoxMYDControl"
	B,572,274,720,307,572,307,65535,0,6400,0,1,0,0,0
	PP,"MenuBarControlStatus","CONTROL.WS.MYD",572,274,720,307,1,0,0,1,0,0
O,END
O,BEGIN,S,"txtBoxSKNControl"
	B,572,364,720,397,572,397,65535,0,6400,0,1,0,0,0
	PP,"MenuBarControlStatus","CONTROL.WS.SKN",572,364,720,397,1,0,0,1,0,0
O,END
O,BEGIN,S,"txtBoxSUNControl"
	B,572,454,720,487,572,487,65535,0,6400,0,1,0,0,0
	PP,"MenuBarControlStatus","CONTROL.WS.SUN",572,454,720,487,1,0,0,1,0,0
O,END
O,BEGIN,S,"txtBoxSXSControl"
	B,572,544,720,577,572,577,65535,0,6400,0,1,0,0,0
	PP,"MenuBarControlStatus","CONTROL.WS.SXS",572,544,720,577,1,0,0,1,0,0
O,END
O,BEGIN,T,"Text8"
	B,80,544,304,576,64,586,65535,0,6400,0,1,0,0,0
	ST,0,1,COLOR,1,COLOR,1,0,0,COLOR,6,0,COLOR,6,0,COLOR,1,0,COLOR,1
	PP,1,80,544,0,0,FONT,5,"Southern Cross",37,FONT,4,"Sunshine",37
O,END
O,BEGIN,CBX,"cmbBoxSKN"
	B,951,364,1516,397,10,195,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,3,0,COLOR,3,0,COLOR,1,0,COLOR,1
	AST,5,2,COLOR,1,COLOR,3,0,COLOR,5,0,COLOR,5,0,COLOR,4,0,COLOR,4,0
	PP,2,2,"",-1,1,FONT,2,0,COLOR,5,0,COLOR,1
	A,BEGIN,CBXA,"Anim1",0,0,"",""
		PP,"","","","","","","",0,0,0,0
	A,END
O,END
O,BEGIN,BM,"btnApplyChanges"
	B,2287,1284,2386,1383,2287,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_11.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Apply Changes and Close",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Apply",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnCancel"
	B,2432,1284,2531,1383,2432,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_12.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Close Without Applying Changes",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Close",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnResetAll"
	B,2142,1284,2241,1383,2142,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_27.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Clear Current Config",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Reset",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnApplyChanges1"
	B,2287,1284,2386,1383,2287,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_11.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Apply Changes and Close",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Apply",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnCancel2"
	B,2432,1284,2531,1383,2432,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_12.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Close Without Applying Changes",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Close",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnResetAll3"
	B,2142,1284,2241,1383,2142,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_27.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Clear Current Config",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Reset",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnApplyChanges4"
	B,2287,1284,2386,1383,2287,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_11.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Apply Changes and Close",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Apply",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnCancel5"
	B,2432,1284,2531,1383,2432,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_12.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Close Without Applying Changes",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Close",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnResetAll6"
	B,2142,1284,2241,1383,2142,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_27.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Clear Current Config",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Reset",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnApplyChanges7"
	B,2287,1284,2386,1383,2287,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_11.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Apply Changes and Close",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Apply",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnCancel8"
	B,2432,1284,2531,1383,2432,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_12.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Close Without Applying Changes",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Close",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnResetAll9"
	B,2142,1284,2241,1383,2142,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_27.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Clear Current Config",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Reset",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnApplyChanges10"
	B,2287,1284,2386,1383,2287,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_11.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Apply Changes and Close",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Apply",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnCancel11"
	B,2432,1284,2531,1383,2432,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_12.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Close Without Applying Changes",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Close",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnResetAll12"
	B,2142,1284,2241,1383,2142,1382,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_27.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Clear Current Config",""
		PP,0,"modScreenSelector","ScreenSelectHandler","",0,0
		PARAM,"agrSymbol",1,"",0
		PARAM,"asType",2,"Reset",0
		PARAM,"asArg",2,"",0
	A,END
O,END
O,BEGIN,BM,"btnApplyChanges3"
	B,1448,800,1507,859,1448,858,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_11.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Clear Current Config",""
		PP,0,"modControlAllocation","ControlAllocationButtonHandler","",0,0
		PARAM,"asType",2,"Apply",0
	A,END
O,END
O,BEGIN,BM,"btnCancel14"
	B,1520,800,1579,859,1520,858,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_12.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,LC,"Anim1",0,0,"@Close",""
		PP,"*",""
	A,END
O,END
O,BEGIN,BM,"btnResetAll15"
	B,1376,800,1435,859,1376,858,65535,0,6400,0,1,1,1,0
	ST,5,1,COLOR,1,COLOR,1,1,0,COLOR,2,0,COLOR,2,0,COLOR,1,0,COLOR,1
	PP,"/BUTTON/GENERAL_BOUTON_27.bmp",1,COLOR,7,"","",1,1
	A,BEGIN,RV,"Anim1",0,0,"@Clear Current Config",""
		PP,0,"modControlAllocation","ControlAllocationButtonHandler","",0,0
		PARAM,"asType",2,"Reset",0
	A,END
O,END
