
var re_dt = /^(\d{1,2})\-(\d{1,2})\-(\d{4})$/,
re_tm = /^(\d{1,2})\:(\d{1,2})\:(\d{1,2})$/,
a_formats = {
	'alpha'   : /^[a-zA-Z\.\-:space:]*$/,
	'alphanum': /^\w+$/,
	'unsigned': /^\d+$/,
	'integer' : /^[\+\-]?\d*$/,
	'real'    : /^[\+\-]?\d*\.?\d*$/,
	'email'   : /^[\w-\.]+\@[\w\.-]+\.[a-z]{2,4}$/,
	'phone'   : /^[\d\.\s\-]+$/,
	'date'    : function (s_date) {
		// check format
		if (!re_dt.test(s_date))
			return false;
		// check allowed ranges	
		if (RegExp.$1 > 31 || RegExp.$2 > 12)
			return false;
		// check number of day in month
		var dt_test = new Date(RegExp.$3, Number(RegExp.$2-1), RegExp.$1);
		if (dt_test.getMonth() != Number(RegExp.$2-1))
			return false;
		return true;
	},
	'time'    : function (s_time) {
		// check format
		if (!re_tm.test(s_time))
			return false;
		// check allowed ranges	
		if (RegExp.$1 > 23 || RegExp.$2 > 59 || RegExp.$3 > 59)
			return false;
		return true;
	}
},

a_messages = [
	'No form name passed to validator construction routine', //1
	'No array of "%form%" form fields passed to validator construction routine', //2
	'Form "%form%" can not be found in this document', //3
	'Incomplete "%n%" form field descriptor entry. "l" attribute is missing', //4
	'Can not find form field "%n%" in the form "%form%"',//5
	'Can not find label tag (id="%t%")',//6
	'Can not verify match. Field "%m%" was not found', //7
	'"%l%" is a required field', //8
	'Value for "%l%" must be %mn% characters or more', //9
	'Value for "%l%" must be no longer than %mx% characters', //10
	'"%v%" is not valid value for "%l%"',//11
	'"%l%" must match "%ml%"',//12
]

// validator counstruction routine
function validator(s_form, a_fields, o_cfg) {
	this.f_error = validator_error;
	this.f_alert = o_cfg && o_cfg.alert
		? function(s_msg) { alert(s_msg); return false }
		: function() { return false };
		
	// check required parameters
	if (!s_form)	
		return this.f_alert(this.f_error(0));
	this.s_form = s_form;
	
	if (!a_fields || typeof(a_fields) != 'object')
		return this.f_alert(this.f_error(1));
	this.a_fields = a_fields;

	this.a_2disable = o_cfg && o_cfg['to_disable'] && typeof(o_cfg['to_disable']) == 'object'
		? o_cfg['to_disable']
		: [];
		
	this.exec = validator_exec;
}

// validator execution method
function validator_exec() {
	var o_form = document.forms[this.s_form];
	if (!o_form)	
		return this.f_alert(this.f_error(2));
		
	b_dom = document.body && document.body.innerHTML;
	
	// check integrity of the form fields description structure
	for (var n_key in this.a_fields) {
		// check input description entry
		this.a_fields[n_key]['n'] = n_key;
		if (!this.a_fields[n_key]['l'])
			return this.f_alert(this.f_error(3, this.a_fields[n_key]));
		o_input = o_form.elements[n_key];
		if (!o_input)
			return this.f_alert(this.f_error(4, this.a_fields[n_key]));
		this.a_fields[n_key].o_input = o_input;
	}

	// reset labels highlight
	if (b_dom)
		for (var n_key in this.a_fields) 
			if (this.a_fields[n_key]['t']) {
				var s_labeltag = this.a_fields[n_key]['t'], e_labeltag = get_element(s_labeltag);
				if (!e_labeltag)
					return this.f_alert(this.f_error(5, this.a_fields[n_key]));
				this.a_fields[n_key].o_tag = e_labeltag;
				
				// normal state parameters assigned here
				e_labeltag.className = 'tfvNormal';
			}

	// collect values depending on the type of the input
	for (var n_key in this.a_fields) {
		var s_value = '';
		o_input = this.a_fields[n_key].o_input;
		if (o_input.type == 'checkbox') // checkbox
			s_value = o_input.checked ? o_input.value : '';
		else if (o_input.value) // text, password, hidden
			s_value = o_input.value;
		else if (o_input.options) // select
			s_value = o_input.selectedIndex > -1
				? o_input.options[o_input.selectedIndex].value
				: null;
		else if (o_input.length > 0) // radiobuton
			for (var n_index = 0; n_index < o_input.length; n_index++)
				if (o_input[n_index].checked) {
					s_value = o_input[n_index].value;
					break;
				}
		this.a_fields[n_key]['v'] = s_value.replace(/(^\s+)|(\s+$)/g, '');
	}
	
	// check for errors
	var n_errors_count = 0,
		n_another, o_format_check;
	for (var n_key in this.a_fields) {
		o_format_check = this.a_fields[n_key]['f'] && a_formats[this.a_fields[n_key]['f']]
			? a_formats[this.a_fields[n_key]['f']]
			: null;

		// reset previous error if any
		this.a_fields[n_key].n_error = null;

		// check reqired fields
		if (this.a_fields[n_key]['r'] && !this.a_fields[n_key]['v']) {
			this.a_fields[n_key].n_error = 1;
			n_errors_count++;
		}
		// check length
		else if (this.a_fields[n_key]['mn'] && this.a_fields[n_key]['v'] != '' && String(this.a_fields[n_key]['v']).length < this.a_fields[n_key]['mn']) {
			this.a_fields[n_key].n_error = 2;
			n_errors_count++;
		}
		else if (this.a_fields[n_key]['mx'] && String(this.a_fields[n_key]['v']).length > this.a_fields[n_key]['mx']) {
			this.a_fields[n_key].n_error = 3;
			n_errors_count++;
		}
		// check format
		else if (this.a_fields[n_key]['v'] && this.a_fields[n_key]['f'] && (
			(typeof(o_format_check) == 'function'
			&& !o_format_check(this.a_fields[n_key]['v']))
			|| (typeof(o_format_check) != 'function'
			&& !o_format_check.test(this.a_fields[n_key]['v'])))
			) {
			this.a_fields[n_key].n_error = 4;
			n_errors_count++;
		}
		// check match	
		else if (this.a_fields[n_key]['m']) {
			for (var n_key2 in this.a_fields)
				if (n_key2 == this.a_fields[n_key]['m']) {
					n_another = n_key2;
					break;
				}
			if (n_another == null)
				return this.f_alert(this.f_error(6, this.a_fields[n_key]));
			if (this.a_fields[n_another]['v'] != this.a_fields[n_key]['v']) {
				this.a_fields[n_key]['ml'] = this.a_fields[n_another]['l'];
				this.a_fields[n_key].n_error = 5;
				n_errors_count++;
			}
		}
		
	}
	

	
	// collect error messages and highlight captions for errorneous fields
	var s_alert_message = '',
		e_first_error;

	if (n_errors_count) {
		for (var n_key in this.a_fields) {
			var n_error_type = this.a_fields[n_key].n_error,
				s_message = '';
				
			if (n_error_type)
				s_message = this.f_error(n_error_type + 6, this.a_fields[n_key]);

			if (s_message) {
				if (!e_first_error)
					e_first_error = o_form.elements[n_key];
				s_alert_message += s_message + "\n";
				// highlighted state parameters assigned here
				if (b_dom && this.a_fields[n_key].o_tag)
					this.a_fields[n_key].o_tag.className = 'tfvHighlight';
			}
		}
		alert(s_alert_message);
		// set focus to first errorneous field
		if (e_first_error.focus && e_first_error.type != 'hidden'  && !e_first_error.disabled)
			eval("e_first_error.focus()");
		// cancel form submission if errors detected
		return false;
	}
	
	for (n_key in this.a_2disable)
		if (o_form.elements[this.a_2disable[n_key]])
			o_form.elements[this.a_2disable[n_key]].disabled = true;

	return true;
}

function validator_error(n_index) {
	var s_ = a_messages[n_index], n_i = 1, s_key;
	for (; n_i < arguments.length; n_i ++)
		for (s_key in arguments[n_i])
			s_ = s_.replace('%' + s_key + '%', arguments[n_i][s_key]);
	s_ = s_.replace('%form%', this.s_form);
	return s_
}

function get_element (s_id) {
	return (document.all ? document.all[s_id] : (document.getElementById ? document.getElementById(s_id) : null));
}


/**********************************************************************************************/
<!-- 

function ControllaCF()
{
 // Recupero elementi nella pagina
cf = document.getElementById("company_number_cf");
div_err = document.getElementById("err_cf");
button = document.registrazione2.Submit;
 
 // Dichiaro le variabili
 var validi, i, s, set1, set2, setpari, setdisp;
 validi = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
set1 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
set2 = "ABCDEFGHIJABCDEFGHIJKLMNOPQRSTUVWXYZ";
setpari = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
setdisp = "BAKPLCQDREVOSFTGUHMINJWZYX";
s = 0;


 // Verifico che il codice fiscale non sia vuoto
 if( cf.value == "" ) 
 {
  // Creo il messaggio
  alert("Scrivi il codice fiscale o quello della Tua società.\n"
  +"Se il Cod.Fisc. societario è identico alla Partita IVA, scrivi \n"
   +"quest'ultima nel campo Cod. Fisc.\n");
  // Blocco il pulsante di invio del modulo
  button.disabled = true;
  // Esco dalla funzione
  return false;
 }
// controllo p. iva
 if( cf.value.length == 11 )
 { 
 ControllaPIVA_su_CF();
// Blocco il pulsante di invio del modulo
button.disabled = false;
 return true;
}
// controllo p. iva
 // Il codice fiscale non è vuoto, lo strasformo il lettere maiuscole
 cf.value = cf.value.toUpperCase();
 
 // Ora che ho il codice fiscale in lettere maiuscole, controllo che non abbia più di 16 cifre
 if( cf.value.length != 16 )
 {
  // Creo il messaggio
  alert("La lunghezza del codice fiscale non è\n"
  +"corretta. Il codice fiscale dovrebbe essere lungo\n"
  +"esattamente 16 caratteri.\n");
  // Blocco il pulsante di invio del modulo
  button.disabled = true;
  // Esco dalla funzione
  return false;
 }
 
 // Ho il codice fiscale in lettere maiuscole e ha 16 cifre, verifico che i caratteri siano validi
 for( i = 0; i < 16; i++ ){
  if( validi.indexOf( cf.value.charAt(i) ) == -1 )
  {
   // Creo il messaggio
   alert("Il codice fiscale contiene un carattere non valido `" + cf.value.charAt(i) + "'.\nI caratteri validi sono le lettere e le cifre.\n");
   // Blocco il pulsante di invio del modulo
   button.disabled = true;
   // Esco dalla funzione
   return false;
  }
 }
 
 // Elaboro il codice...
 for( i = 1; i <= 13; i += 2 ) s += setpari.indexOf( set2.charAt( set1.indexOf( cf.value.charAt(i) )));
 for( i = 0; i <= 14; i += 2 ) s += setdisp.indexOf( set2.charAt( set1.indexOf( cf.value.charAt(i) )));
 
 // Eseguo un ultimo controllo sul codice
 if( s%26 != cf.value.charCodeAt(15)-'A'.charCodeAt(0) )
 {
  alert("Il codice fiscale non è corretto:\n"+
  "il codice di controllo non corrisponde.\n");
  // Blocco il pulsante di invio del modulo
  button.disabled = true;
  // Esco dalla funzione
  return false;
 }
 
 // Funzione seguita, tutto è andato a buon fine
 //alert("sblocco il pulsante..");
 button.disabled = false;
 return true;
}
function ControllaPIVA_su_CF()
{
 // Recupero elementi nella pagina
pi = document.getElementById("company_number_cf");
div_err = document.getElementById("err_p");
 button = document.registrazione2.Submit;
 // Dichiaro le variabili
  var validipi,s,c;
  validipi = "0123456789";
  // Verifico che la partita iva non sia vuota
 if( pi.value == "" ) {

  // Creo il messaggio
alert ("Scrivi la Partita IVA della Tua società.\n"
  +"Se hai inserito il numero di Partita IVA nel campo Cod. Fisc.\n"
   +"riscrivi la Partita IVA anche in questo campo.\n");
  // Blocco il pulsante di invio del modulo
  button.disabled = true;
  // Esco dalla funzione
   return false;
 }
 if( pi.value.length != 11 ){
	alert("La lunghezza della partita IVA non è\n" +
			"corretta: la partita IVA dovrebbe essere lunga\n" +
			"esattamente 11 caratteri.\nsaddsadsasad");
			button.disabled = true;
  // Esco dalla funzione
   return false;
 }
 //
 for( i = 0; i < 11; i++ ){
  if( validipi.indexOf( pi.value.charAt(i) ) == -1 )
  {
   // Creo il messaggio
   alert("La Partita IVA contiene un carattere non valido `" + pi.value.charAt(i) + "'.\nI caratteri validi sono solo numeri.\n");
   // Blocco il pulsante di invio del modulo
   button.disabled = true;
   // Esco dalla funzione
   return false;
  }
 }
 //
s = 0;
	for( i = 0; i <= 9; i += 2 )
		s += pi.value.charCodeAt(i) - '0'.charCodeAt(0);
		
	for( i = 1; i <= 9; i += 2 ){
		c = 2*( pi.value.charCodeAt(i) - '0'.charCodeAt(0) );
		if( c > 9 )  c = c - 9;
		s += c;
	}
 if( ( 10 - s%10 )%10 != pi.value.charCodeAt(10) - '0'.charCodeAt(0) ) {
	alert("La partita IVA non è valida:\n" +
			"il codice di controllo non corrisponde.\n");
	 button.disabled = true;
   // Esco dalla funzione
   return false;
  }
 
 button.disabled = false;
 return true;
}

function ControllaPIVA()
{
 // Recupero elementi nella pagina
 pi = document.getElementById("company_number");
div_err = document.getElementById("err_p");
 button = document.registrazione2.Submit;
 // Dichiaro le variabili
  var validipi,s,c;
  validipi = "0123456789";
  // Verifico che la partita iva non sia vuota
 if( pi.value == "" ) {

  // Creo il messaggio
alert ("Scrivi la Partita IVA della Tua società.\n"
  +"Se hai inserito il numero di Partita IVA nel campo Cod. Fisc.\n"
   +"riscrivi la Partita IVA anche in questo campo.\n");
  // Blocco il pulsante di invio del modulo
  button.disabled = true;
  // Esco dalla funzione
   return false;
 }
 if( pi.value.length != 11 ){
	alert("La lunghezza della partita IVA non è\n" +
			"corretta: la partita IVA dovrebbe essere lunga\n" +
			"esattamente 11 caratteri.\n");
			button.disabled = true;
  // Esco dalla funzione
   return false;
 }
 //
 for( i = 0; i < 11; i++ ){
  if( validipi.indexOf( pi.value.charAt(i) ) == -1 )
  {
   // Creo il messaggio
   alert("La Partita IVA contiene un carattere non valido `" + pi.value.charAt(i) + "'.\nI caratteri validi sono solo numeri.\n");
   // Blocco il pulsante di invio del modulo
   button.disabled = true;
   // Esco dalla funzione
   return false;
  }
 }
 //
s = 0;
	for( i = 0; i <= 9; i += 2 )
		s += pi.value.charCodeAt(i) - '0'.charCodeAt(0);
		
	for( i = 1; i <= 9; i += 2 ){
		c = 2*( pi.value.charCodeAt(i) - '0'.charCodeAt(0) );
		if( c > 9 )  c = c - 9;
		s += c;
	}
 if( ( 10 - s%10 )%10 != pi.value.charCodeAt(10) - '0'.charCodeAt(0) ) {
	alert("La partita IVA non è valida:\n" +
			"il codice di controllo non corrisponde.\n");
	 button.disabled = true;
   // Esco dalla funzione
   return false;
  }
 
 button.disabled = false;
 return true;
}	
	

 

function passwordChanged() {
	var strength = document.getElementById('strength');
	var strongRegex = new RegExp("^(?=.{8,})(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*\\W).*$", "g");
	var mediumRegex = new RegExp("^(?=.{7,})(((?=.*[A-Z])(?=.*[a-z]))|((?=.*[A-Z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$", "g");
	var enoughRegex = new RegExp("(?=.{6,}).*", "g");
	var pwd = document.getElementById("pass");
	if (pwd.value.length==0) {
		strength.innerHTML = 'Digita la tua password';
	} else if (false == enoughRegex.test(pwd.value)) {
		strength.innerHTML = 'Aggiungi caratteri';
	} else if (strongRegex.test(pwd.value)) {
		strength.innerHTML = '<span style="color:green">Password sicura!</span>';
	} else if (mediumRegex.test(pwd.value)) {
		strength.innerHTML = '<span style="color:orange">Password com media sicurezza!</span>';
	} else { 
		strength.innerHTML = '<span style="color:red">Password insicura!</span>';
	}
}

// -->
// form fields description structure


/**********************************************************************************************/
