window.addEvent('domready', function(){

	var samedata = $('samedata');
	
	$('registro').addEvent('submit', function(ev){
		if(samedata.checked) copyData();
	});
	
	//Prepare form validation
	new FormCheck('registro', {
			display : {
				fadeDuration : 500,
				errorsLocation : 2,
				indicateErrors : 1,
				showErrors : 1
			}
	});
	
	//prepare hide/show admin data
	samedata.addEvent('click', function(ev){
		var state = this.checked ? 'none' : 'block';
		$('admindata').setStyle('display', state);
	});
});

//copy all data from 1st inputs to the last ones
function copyData()
{
	var fsrc = ['nombre', 'email', 'phone', 'fax', 'addr', 'country', 'local', 'province', 'postcode'];
	var fdst = ['anombre', 'aemail', 'aphone', 'afax', 'aaddr', 'acountry', 'alocal', 'aprovince', 'apostcode'];
	
	for(var i = 0; i < fsrc.length; i++){
		var si = $(fsrc[i]);
		var di = $(fdst[i]);
		di.value = si.value;
	}
}