function CheckRegisterForm() {
	
	if (
	($('#reg_first_name').val().match(/^( )*$/)) 
	|| ($('#reg_last_name').val().match(/^( )*$/)) 
	|| ($('#reg_company_name').val().match(/^( )*$/)) 
	|| ($('#reg_company_nip').val().match(/^( )*$/)) 
	|| ($('#reg_phone').val().match(/^( )*$/)) 
	|| ($('#reg_email').val().match(/^( )*$/)) 
	|| ($('#reg_address_line1').val().match(/^( )*$/)) 
	|| ($('#reg_address_line2').val().match(/^( )*$/)) 
	|| ($('#reg_city').val().match(/^( )*$/)) 
	|| ($('#reg_county').val().match(/^( )*$/)) 
	|| ($('#reg_postcode').val().match(/^( )*$/)) 
	|| ($('#reg_country').val().match(/^( )*$/)) 
	|| ($('#reg_login').val().match(/^( )*$/)) 
	|| ($('#reg_password').val().match(/^( )*$/)) 
	|| ($('#reg_password2').val().match(/^( )*$/)) 
	) {
		alert(Messages[10]);
		return false;
	}
	
	if (!($('#reg_email').val().match(/^([a-zA-Z0-9])+([.a-zA-Z0-9_-])*@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-]+)+/))) {
		alert(Messages[12]);
		return false;
	}
	
		
	if (
		(document.getElementById('reg_ship1').checked)
		&& (
			($('#reg_ship_address_line1').val().match('/^( )*$')) 
			|| ($('#reg_ship_address_line2').val().match('/^( )*$')) 
			|| ($('#reg_ship_city').val().match('/^( )*$')) 
			|| ($('#reg_ship_county').val().match('/^( )*$')) 
			|| ($('#reg_ship_postcode').val().match('/^( )*$')) 
			|| ($('#reg_ship_country').val().match('/^( )*$')) 
			)
	) {
		alert(Messages[10]);
		return false;
	}
	if (!document.getElementById('agree').checked) {
		alert(Messages[11]);
		return false;
	}
	return true;
}

function ChangeShip() {
	if (document.getElementById('reg_ship0').checked)
		document.getElementById('reg_shipping').style.display='none';
	if (document.getElementById('reg_ship1').checked)
		document.getElementById('reg_shipping').style.display='block';
}
