window name="window" title="Schnute Growth Models"
grid 1 5 sticky=W pady=5
	label text=View: font="bold" sticky=W padx=10
	button text=Docs func=openFile action=SGMDoc.pdf
	button text=Data func=openFile action=SGMdata.txt
	button text="R Code" func=openFile action=SGM.r
	button text=Window func=openFile action=SGMWin.txt

grid 1 4 sticky=W pady=5
	label text="Inputs" font="bold 12" sticky="W" fg="blue"
	entry name=pwr label="Power" width=4 value=0 sticky=W
	button text=" RePow " func=doAction action="tget(SGinit)(`rePow`)"
	label text="-----------------------------" font="courier 10"

grid 3 3 sticky=W byrow=F
	label text="Parameters" font="bold 10" sticky="" padx=5
	data nrow=4 ncol=4 names=parVec width=5 mode="numeric numeric numeric logical" sticky=N \
		rownames="a b y1 y2" colnames="val min max active" \
		rowlabels="a b y1 y2" collabels="val min max active" \
		values="0 0 0 T 0 0 0 T 0 0 0 T 0 0 0 T"
	grid 1 2 sticky="W"
		label text="1st & 2nd\nages" font="" sticky=W padx=5
		vector length=2 names=Pfix labels="t1 t2" width=4 mode=numeric values="1 16" vertical=F sticky=NW pady=0
	label text="Method" font="bold 10" sticky=""
	grid 1 2 sticky=W
		grid 3 1 stick=NW
			radio name=method value="nlm" text="nlm" mode=character sticky=W
			radio name=method value="nlminb" text="nlminb" mode=character sticky=W
			radio name=method value="Nelder-Mead" text="Nelder\nMead" mode=character sticky=W
		grid 4 1 stick=NW
			radio name=method value="BFGS" text="BFGS" mode=character sticky=W
			radio name=method value="CG" text="CG" mode=character sticky=W
			radio name=method value="L-BFGS-B" text="L-BFGS-B" mode=character sticky=W
			radio name=method value="SANN" text="SANN" mode=character sticky=W
	grid 1 3
		button text=" RUN " func=SGtest sticky="" pady=0 padx=0 
		button text=" ReSet " func=SGset action="reSet" sticky="" pady=0 padx=0 
		button text=" ReInit " func=doAction action="tget(SGinit)(`reInit`)" sticky="" pady=0 padx=0 
	label text="Controls" font="bold 10" sticky=""
	vector names="trace maxit reltol steptol temp repN" length=6 values="0 1000 1e-8 1e-6 10 0" \
		width=5 vertical=T padx=10 sticky=NW
	button text="8 Areas" func=show8 sticky="" pady=0 padx=0

grid 1 3 sticky=W
	label text="Outputs" font="bold 12" sticky="W" fg="red" pady=10
	entry name=nd value=6 label="decimal places" width=4 sticky=W
	label text="----------------------------" font="courier 10"

grid 2 3 sticky=W byrow=T
	vector length=2 names="Git Gev" labels="Iters Evals" values="0 0" width=6 sticky=E vertical=T entrybg="#FDB3C1"
	vector length=2 names="Gct Get" labels="Ctime Etime" values="0 0" width=10 sticky=E vertical=T entrybg="#FDB3C1"
	grid 1 2
		vector length=2 names="Gf1 Gf2" labels="Fmin0 Fmin" values="0 0" width=10 vertical=T entrybg="#FDB3C1"
		vector length=2 names="Gaic Gaicc" labels="AIC AICc" values="0 0" width=10 vertical=T entrybg="#FDB3C1"
	#vector length=4 names=Gv0 labels="a b y1 y2" values="0 0 0 0" width=6 sticky=E vertical=T
	vector length=4 names=Gv1 labels="a b y1 y2" values="0 0 0 0" width=10 sticky=E vertical=T entrybg="#FDB3C1"
	vector length=5 names=Gv2 labels="t0 yinf t* y* z*" values="0 0 0 0 0" width=10 sticky=E vertical=T entrybg="#FDB3C1"
	text name=Gmess height=5 width=30 edit=FALSE bg="#d7d7ff" borderwidth=5 relief=solid
