// Title: Tigra Form Validator
// URL: http://www.softcomplex.com/products/tigra_form_validator/
// Version: 1.3
// Date: 08/25/2005 (mm/dd/yyyy)
// Notes: This script is free. Visit official site for further details.

// regular expressions or function to validate the format




 /*               	'b_zipCode'  : {
                		'l': 'Billing Zip Code',     // label
                		'r': true,        // required
                		'f': 'alphanum',  // format (see below)
                		't': 'b_zipCode',   // id of the element to highlight if input not validated
                		'm': null,     // must match specified form field
                		'mn': 1,       // minimum length
                		'mx': 5       // maximum length

*/


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\.\-\'\s]*$/,
	'alphanum': /^[\w\s\.\'\-\,\/\:\?\!\;\"\+\*\_\|\&\%\#\(\)\#\@\^\�\\\>\<\"\{\}\]\[]+$/,
	'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.$2 > 31 || RegExp.$1 > 12  )
			return false;
		if(RegExp.$3 < 1900 )
			return false;
		if(RegExp.$3 > 2100)
			return false;

		// check number of day in month
		var dt_test = new Date(RegExp.$3, Number(RegExp.$1-1), RegExp.$2);

		if (dt_test.getMonth() != Number(RegExp.$1-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',
	'No array of "%form%" form fields passed to validator construction routine',
	'Form "%form%" can not be found in this document',
	'Incomplete "%n%" form field descriptor entry. "l" attribute is missing',
	'Can not find form field "%n%" in the form "%form%"',
	'Can not find label tag (id="%t%")',
	'Can not verify match. Field "%m%" was not found',
	'"%l%" is a required field',
	'Value for "%l%" must be %mn% characters or more',
	'Value for "%l%" must be no longer than %mx% characters',
	'"%v%" is not valid value for "%l%"',
	'"%l%" must match "%ml%"'
]

// 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];
		o_input = document.getElementById(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 CheckFieldSocial(co)
{

	var hodnota = co.value;
	var cisla = "0123456789-";
	//var reg =/^[\+\-]?\d*$/;
	/*if(reg.test(hodnota))
	co.value = hodnota.substring(0,hodnota.length-1);
	return true;*/
	for(x=0;x<hodnota.length;x++)
		{
			pismeno = hodnota.substring(x,x+1);
			if(cisla.indexOf(pismeno)<0 ){
					//return hodnota.substring(0,hodnota.length-1);
					co.value = co.value.replace(pismeno,'');
					return false;
			}
		}

	return true;
}

function CheckFieldDate(co)
{

	var hodnota = co.value
	var cisla = "0123456789/";

		for(x=0;x<hodnota.length;x++)
		{
			pismeno = hodnota.substring(x,x+1);
			if(cisla.indexOf(pismeno)<0 ){
					//return hodnota.substring(0,hodnota.length-1);
					co.value = co.value.replace(pismeno,'');
					return false;
			}
		}

	return true;

}
function CheckFieldTime(co)
{
	var hodnota = co.value
	var cisla = "0123456789:apm";


		for(x=0;x<hodnota.length;x++)
		{
			pismeno = hodnota.substring(x,x+1);
			if(cisla.indexOf(pismeno)<0 ){
					//return hodnota.substring(0,hodnota.length-1);
					co.value = co.value.replace(pismeno,'');
					return false;
			}
		}

	return true;

}

function CheckOnlyNumber(co)
{
	var hodnota = co.value
	var cisla = "0123456789$,.-+";

	for(x=0;x<hodnota.length;x++)
		{
			pismeno = hodnota.substring(x,x+1);
			if(cisla.indexOf(pismeno)<0 ){
					//return hodnota.substring(0,hodnota.length-1);
					co.value = co.value.replace(pismeno,'');
					return false;
			}
		}

	return true;

}


function ConfirmPass(pass1,pass2)
{
	//alert(pass1+'/'+pass1);
	if(pass1==pass2)
	{
		return true;
	}
	else
	{
		alert('Fill both password fields, please!');
		return false;
	}

}

// Confirm registration new user for MyAccount
function CheckAll()
	{

		var p1 = document.getElementById('pass').value;
		var p2 = document.getElementById('repass').value;

	var a_fields = {
                	'name'    : {'l':'Name: ','r':true,'f':'alphanum','t':'name'},
                	'pass'    : {'l':'Password: ','r':true,'f':'alphanum','t':'pass'},
                	'repass'    : {'l':'Repeat password: ','r':true,'f':'alphanum','t':'repass'},
                	'title'    : {'l':'Title : ','r':false,'f':'alphanum','t':'title'},
                	'email'    : {'l':'Email : ','r':true,'f':'email','t':'email'},
                	'phone_number'    : {'l':'Phone Number: ','r':false,'f':'phone','t':'phone_number'}
                },


	                o_config = {
	                	'to_disable' : [''],
	                	'alert' : 1
	                }





                // validator constructor call

                	if(ConfirmPass(p1,p2))
                	{
              	  var v = new validator('frmreg', a_fields, o_config);
		return v.exec();
                	}
                	else
                	{
                	return false;
                	}






	}

	// Check REGISTRATION new user
	function CheckAllRegistrationPHP()
	{
		var p1 = document.getElementById('password1').value;
		var p2 = document.getElementById('repass').value;
		var country = document.getElementById('country').value;

		if( country == 236 || country == 38 ) {
            var bool = true;
		} else {
		    var bool = false;
		}

		if( document.getElementById('typeComp').checked == true ) {
            var a_fields = {
        		'email'    : {'l':'Email : ','r':true,'f':'email','t':'email'},
        		'password1'    : {'l':'Password: ','r':true,'f':'alphanum','t':'password1'},
            	'repass'    : {'l':'Repeat password: ','r':true,'f':'alphanum','t':'repass'},
        		'first_name'    : {'l':'First Name: ','r':true,'f':'alphanum','t':'first_name'},
            	'last_name'    : {'l':'Last Name: ','r':true,'f':'alphanum','t':'last_name'},
            	'company'    : {'l':'Company: ','r':true,'f':'alphanum','t':'company'},
            	'phone_number'    : {'l':'Phone : ','r':true,'f':'phone','t':'phone_number'},
            	/*'fax_number'    : {'l':'Fax Number: ','r':true,'f':'phone','t':'fax_number'},*/
            	/*'ein_id'    : {'l':'EIN ID #: ','r':true,'f':'alphanum','t':'ein_id'},*/
            	/*'sales_tax_cert'    : {'l':'Sales Tax Cert #: ','r':true,'f':'alphanum','t':'sales_tax_cert'},*/
            	'address'    : {'l':'Address : ','r':true,'f':'alphanum','t':'address'},
            	'city'    : {'l':'City : ','r':true,'f':'alphanum','t':'city'},
            	'country'    : {'l':'Country : ','r':true,'f':'alphanum','t':'country'},
            	'state'    : {'l':'State : ','r':bool,'f':'alphanum','t':'state'},
            	'zip_code'    : {'l':'Postal code : ','r':true,'f':'alphanum','t':'zip_code'},
            },
            o_config = {
            	'to_disable' : [''],
            	'alert' : 1
            }
        } else {
            var a_fields = {
        		'email'    : {'l':'Email : ','r':true,'f':'email','t':'email'},
        		'password1'    : {'l':'Password: ','r':true,'f':'alphanum','t':'password1'},
            	'repass'    : {'l':'Repeat password: ','r':true,'f':'alphanum','t':'repass'},
        		'first_name'    : {'l':'First Name: ','r':true,'f':'alphanum','t':'first_name'},
            	'last_name'    : {'l':'Last Name: ','r':true,'f':'alphanum','t':'last_name'},
            	'phone_number'    : {'l':'Phone : ','r':true,'f':'phone','t':'phone_number'},
            	/*'fax_number'    : {'l':'Fax Number: ','r':true,'f':'phone','t':'fax_number'},*/
            	/*'ein_id'    : {'l':'EIN ID #: ','r':true,'f':'alphanum','t':'ein_id'},*/
            	/*'sales_tax_cert'    : {'l':'Sales Tax Cert #: ','r':true,'f':'alphanum','t':'sales_tax_cert'},*/
            	'address'    : {'l':'Address : ','r':true,'f':'alphanum','t':'address'},
            	'city'    : {'l':'City : ','r':true,'f':'alphanum','t':'city'},
            	'country'    : {'l':'Country : ','r':true,'f':'alphanum','t':'country'},
            	'state'    : {'l':'State : ','r':bool,'f':'alphanum','t':'state'},
            	'zip_code'    : {'l':'Postal code : ','r':true,'f':'alphanum','t':'zip_code'},
            },
            o_config = {
            	'to_disable' : [''],
            	'alert' : 1
            }
        }
        // validator constructor call
    	if(ConfirmPass(p1,p2)) {
      	   var v = new validator('frmreg', a_fields, o_config);
           return v.exec();
    	} else {
    	   return false;
    	}
	}

	// Check REGISTRATION new user for company
	function CheckAllRegistrationCusPHP()
	{

		var p1 = document.getElementById('password1').value;
		var p2 = document.getElementById('repass').value;

		var country = document.getElementById('country').value;

		if( country == 236 || country == 38 ) {
            var bool = true;
		} else {
		    var bool = false;
		}

        var a_fields = {
        		'email'    : {'l':'Email : ','r':true,'f':'email','t':'email'},
        		'password1'    : {'l':'Password: ','r':true,'f':'alphanum','t':'password1'},
                        	'repass'    : {'l':'Repeat password: ','r':true,'f':'alphanum','t':'repass'},
        		'first_name'    : {'l':'First Name: ','r':true,'f':'alphanum','t':'first_name'},
                        	'last_name'    : {'l':'Last Name: ','r':true,'f':'alphanum','t':'last_name'},
                        	'company'    : {'l':'Company: ','r':true,'f':'alphanum','t':'company'},
                        	'phone_number'    : {'l':'Phone : ','r':true,'f':'phone','t':'phone_number'},
                        	'fax_number'    : {'l':'Fax Number: ','r':true,'f':'phone','t':'fax_number'},
                        	/*'ein_id'    : {'l':'EIN ID #: ','r':true,'f':'alphanum','t':'ein_id'},*/
                        	/*'sales_tax_cert'    : {'l':'Sales Tax Cert #: ','r':true,'f':'alphanum','t':'sales_tax_cert'},*/
                        	'address'    : {'l':'Address : ','r':true,'f':'alphanum','t':'address'},
                        	'city'    : {'l':'City : ','r':true,'f':'alphanum','t':'city'},
                        	'state'    : {'l':'State : ','r':bool,'f':'alphanum','t':'state'},
                        	'zip_code'    : {'l':'Zip code : ','r':true,'f':'alphanum','t':'zip_code'},
                        	'country'    : {'l':'Country : ','r':true,'f':'alphanum','t':'country'}

                    },
            o_config = {
            	'to_disable' : [''],
            	'alert' : 1
            }

            // validator constructor call
        	if(ConfirmPass(p1,p2)) {
          	   var v = new validator('frmreg', a_fields, o_config);
               return v.exec();
        	} else {
        	   return false;
        	}
	}


// from SUPPORT

function CheckSupportForm()
	{
	var a_fields = {
		'name'    : {'l':'Name: ','r':true,'f':'alphanum','t':'name'},
		'company'    : {'l':'Company ','r':true,'f':'alphanum','t':'company'},
		'email'    : {'l':'Email : ','r':true,'f':'email','t':'email'},
		'phone'    : {'l':'Phone: ','r':true,'f':'phone','t':'phone'},
		'serial_number'    : {'l':'Serial Number: ','r':true,'f':'alphanum','t':'serial_number'},
		'catalog_number'    : {'l':'Catalog Number: ','r':true,'f':'alphanum','t':'catalog_number'},
		'descr'    : {'l':'Description of Request: ','r':true,'f':'alphanum','t':'descr'},
		'details'    : {'l':'Details of Request: ','r':true,'f':'alphanum','t':'details'}
	},
        o_config = {
        	'to_disable' : [''],
        	'alert' : 1
        }
        // validator constructor call
    	var v = new validator('frmsupport', a_fields, o_config);
		return v.exec();

	}


// Check Contact US Form
function CheckContactUsForm()
	{
	var a_fields = {
		'name'        : {'l':'Name: ','r':true,'f':'alphanum','t':'name'},
		'phone'       : {'l':'Phone: ','r':true,'f':'phone','t':'phone'},
		'email'       : {'l':'Email: ','r':true,'f':'email','t':'email'},
		'zip'         : {'l':'Zip code: ','r':true,'f':'alphanum','t':'zip'},
		'country'     : {'l':'Country: ','r':true,'f':'alpha','t':'company'}
	},
	                o_config = {
	                	'to_disable' : [''],
	                	'alert' : 1
	                }

                // validator constructor call
                	 var v = new validator('frmContactUs', a_fields, o_config);
		return v.exec();

	}


function checkLogin()
{
    var qu = confirm("You have to be logged in to add this product to the shopping cart. If you are a new user, please click \"OK\" to register.");
    //alert(qu);
    	if(qu==true)
    {
    	document.location="../registration/registration.php";
    }
}


function RemoveNonNumeric( strString )
{
      // Variables
      var strValidCharacters = "1234567890";
      var strReturn = "";
      var strBuffer = "";
      var intIndex = 0;


      // Loop through the string
      for( intIndex = 0; intIndex < strString.length; intIndex++ )
      {
            // Get this character
            strBuffer = strString.substr( intIndex, 1 );

            // Is this a number
            if( strValidCharacters.indexOf( strBuffer ) > -1 )
            {
                  // Yes
                  strReturn += strBuffer;
            }
      }

      // Return the value
      return strReturn;
}

function changeTelNubmer(obj)
{
        var hodnota = obj.value;
        hodnota = RemoveNonNumeric(hodnota);
        obj.value = "";
        var valueOut = "";
        for(x=0;x<hodnota.length;x++)
		{
		          number = hodnota.substring(x,x+1);
			if(x==2){
			    number = number + '-';
			}
			if(x==5){
			    number = number + '-';
			}
		          valueOut =  valueOut + number;

		}

        obj.value = valueOut;
}

function confirmBattery()
{
    var qu = confirm("Did you remember to order a battery charging accessory for your Pipettor? Click OK to continue with Check Out, or Cancel to order a charging accessory.");
    if(qu==false) {
    	document.location="../products/accessories.php";
    } else {
        document.location="../registration/shipping-address.php";
    }
}
