<!--
function EnableTextField(strListBoxName,strTextFieldName,intTriggerIndex) {
	if(document.getElementById(strListBoxName).value==intTriggerIndex) {
		document.getElementById(strTextFieldName).style.display = '';
		document.getElementById(strTextFieldName+'_obligatory').style.display = '';
	} else {
 
		document.getElementById(strTextFieldName).style.display = 'none';
		document.getElementById(strTextFieldName+'_obligatory').style.display = 'none';
		document.getElementById(strTextFieldName).value = '';
	}
}

function InputNext(what,e,max,action) {

    if (document.layers) {

        if (e.target.value.length >= max)
            eval(action);
    }
    else if (document.all) {

        if (what.value.length > (max-1))
            eval(action);
    }
}
// -->