﻿//	[INPUT]
//	-----------------------------------------------------------------
		function boxButtonGo(){

			// Vars
			var inputCode = $("#enter-code-input").val()
			var nValue = inputCode.replace(/[^0-9]/g, '' );
			
			
			//	Check length min 5 char max 6 char
			if( inputCode.length == 5 || inputCode.length == 6) {
				
				if(nValue < 50000 && nValue > 0) {
					$(".box-language-choice").css('display','block');
				}else{
					alert("The number does NOT match with our database");
				}
			}else{
				alert("Please fill in the correct number")
			}

		}


//	[INIT]
//	-----------------------------------------------------------------
		$(document).ready(function(){
			//dboxButtonGo();
		});
