function showPrice(IEprice, UKprice) {
		var thisCountry = "IE";
		var	thisCurrency = "&euro;";
		var thisPrice = IEprice;
		var checkCountry = geoplugin_countryName();
		if(checkCountry != "Ireland") {
			thisCountry = "UK";
			thisCurrency = "&pound;";
			thisPrice = UKprice;
		}
		//alert(("Your Country is : "+ thisCountry + " - " + thisCurrency + " " + thisPrice));
		return (thisCurrency + " " + thisPrice);
}