function geoplugin_city() { return 'Gloucester';} 
function geoplugin_region() { return 'Gloucestershire';} 
function geoplugin_regionCode() { return 'E6';} 
function geoplugin_regionName() { return 'Gloucestershire';} 
function geoplugin_areaCode() { return '0';} 
function geoplugin_dmaCode() { return '0';} 
function geoplugin_countryCode() { return 'GB';} 
function geoplugin_countryName() { return 'United Kingdom';} 
function geoplugin_continentCode() { return 'EU';} 
function geoplugin_latitude() { return '51.833302';} 
function geoplugin_longitude() { return '-2.250000';} 
function geoplugin_currencyCode() { return 'GBP';} 
function geoplugin_currencySymbol() { return '&#163;';} 
function geoplugin_currencyConverter(amt, symbol) { 
	if (!amt) { return false; } 
	var converted = amt * 0.6641446963; 
	if (converted <0) { return false; } 
	if (symbol === false) { return Math.round(converted * 100)/100; } 
	else { return '&#163;'+(Math.round(converted * 100)/100);} 
	return false; 
} 

