	check_form = new ixFormChecks( "check_form" );

	check_form.config.inputControl( false );          // true: Eingabekontrolle falscher Zeichen   false: keine Eingabekontrolle
	check_form.config.orderByTabIndex( false );         // true: Ordnung nach TabIndex    false: Ordnung nach Konfiguration
	check_form.config.disableChilds( false );         // true: nicht aktivierte Kindfelder werden dektiviert     false: keine Deaktivierung
	check_form.config.disableSubmitButton( false, "submitButton", "blue" );            // der Submit-Button ist solange deaktiviert wie die Eingabe nicht vollstädig ist
	
	check_form.config.loader( true );
	check_form.config.language( "de", ["de","en"] );
	check_form.config.alertModeOnChange( "HIGHLIGHT" );   // Argument 1: NONE, ALERT, HIGHTLIGHT, HIGHLIGHT_AND_ALERT
	check_form.config.alertModeOnSubmit( "HIGHLIGHT_AND_ALERT" );   // Argument 1: ALERT, HIGHTLIGHT, HIGHLIGHT_AND_ALERT
	check_form.config.inputCss( "needed", "red", "disable" );            // Argument 1: InputClassName für fehlerhafte Eingabe    Argument 2: InputClassName für deaktiviertes Eingabefeld
	check_form.config.alertSettings( "SYSTEM", "blue", textInputErrorMessage, "", false );    // window, form oder system , css-id [, headline, description]

