// JavaScript Document

function test_age_scripts(){
	var countriesage = document.getElementById('country').value;
	var age = document.getElementById('age').value;
	

	if (age > (countriesage-1) )  {		
		window.location="/welcome/";
		if (countriesage ==0)  { window.location="http://www.drinkaware.co.uk/"; }	
	}
	else {		window.location="http://www.drinkaware.co.uk/";	}
}