function lcli_init()
	{
	var form2 = new Y.Validator(
		{ form: 'LcliForm'
//		, defaultIndicatorDomType: 'DIV'
		, defaultIncorrectIndicatorCss: 'validator'
		, defaultCorrectIndicatorCss: 'indicator'
		, createCorrectIndicator: true
		, createIncorrectIndicator: true
//		, correctIndicatorText:'<span class="indicator"> </span>'
//		, incorrectIndicatorText:'<span class="validator"> </span>'
		, fieldJSON:
			[
				{ type: Y.TextBaseField
				, atts: 
					{ inputDOM: 'FirstName'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'LastName'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Street'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'City'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Zip'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Phone_Home'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Phone_Cell'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Phone_Work'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Email'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'District'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Building'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Subject'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'Grade'
					}
				}
			,	{ type: Y.TextBaseField
				, atts:
					{ inputDOM: 'CC'
					}
				}
//			,	{ type:Y.DoubleField
//				, atts:
//					{ inputDOM: 'income2'
//					, max: 40000.00
//					, maxDecimalPlaces: 2
//					}
//				}
//			,	{ type:Y.IntegerField
//				, atts:
//					{ inputDOM: 'age2'
//					, max: 100
//					, min: 10
//					}
//				}
			]
		} );
	}

var Y = YUI().use( "base", "oop", "dom", "event", "node", "gallery-formvalidator", function( Y )
	{
	Y.on( "domready", lcli_init );
	} );

