function enterCode() {
	$('#codeError').hide();

	if ($('#code').val() == undefined || $('#code').val().trim() == '') {
		$('#codeError').html('Please fill in a code!');
		$('#codeError').show();
	}
	else {
		$.getJSON($('base').attr('href')+"blades/checkCode.php?code="+$('#code').val(),
        function(data){
        	if (data.state == 1) {
        		document.enterCodeForm.submit();
        	} else {
				$('#codeError').html(data.msg);
				$('#codeError').show();
        	} 	
        });
	}
}

function checkAge(day, month, year) {
	var min_age = 18;

	if (day.trim == "" || month.trim() == "" || year.trim() == "") { return false; }

	day = parseInt(day);
	month = parseInt(month);
	year = parseInt(year);
	
	var theirDate = new Date((year + min_age), month, day);
	var today = new Date;

	if ( (today.getTime() - theirDate.getTime()) < 0) {
		return false;
	}
	else {
		return true;
	}
}

function enterDetails() {
	if (odvalidate('enterDetailsForm')) {
		if ($('#other_trade').attr('checked') && $('#other_trade_txt').val().trim() == "") {
			$('#error_trade').show();
			$('#error_summary').show();
		} else if ($('#other_blade').attr('checked') && $('#other_blade_txt').val().trim() == "") {
			$('#error_blade').show();
			$('#error_summary').show();
		} else if ($('#cEmail').attr('checked') && !$('#emailfld').val().isEmail()) {
			$('#error_email').show();
			$('#error_summary').show();
		} else if ($('#cPhone').attr('checked') && $('#phonefld').val().trim() == '') {
			$('#error_phone').show();
			$('#error_summary').show();
		} else {
			if (!checkAge($('#dob_day').val(), $('#dob_month').val(), $('#dob_year').val())) {
				$('#age_error').show();
				$('#error_summary').show();
			} else {
				$('#age_error').hide();
				$('#error_blade').hide();
				$('#error_trade').hide();
				document.enterDetailsForm.submit();
			}
		}
	}
}

function findDealer() {
	window.open('http://www.stanleydealers.eu/popup.php?regio=UKEN&address='+ $('#dealer').val(),'dealerlocator','scrollbars=no,resizable=no,width=760,height=500')
}