// IP Country message

	var cc;
	cc = geoip_country_code();
	var gb = "GB"
	if (cc == gb) {
		document.write('<font color="#a80000">');
		document.write('<br>Your IP address indicates that you are in the United Kingdom.');
		document.write('</font>');
		}
		else {
		document.write('<font color="#a80000">');
		document.write('<br>' + 'Your IP address indicates that you are outside the United Kingdom.');
		document.write('<br>' + 'You will not be permitted to proceed with registration.');
		document.write('</font>');
		}
		

