
// dirty fix for not displaying the pund character on IE 5 mac

function macHack()
{
	os = navigator.platform.toLowerCase();
	browser = navigator.appName.toLowerCase();
	
	if((os.indexOf("mac") > -1) && (browser.indexOf("microsoft") > -1))
	{
		arr = document.getElementsByTagName("option");
		
		for(i=0; i<arr.length; i++)
		{
			if(arr[i].text.indexOf('£') > 0)
				arr[i].text = arr[i].text.replace('£', 'GBP ');
		}
	}
}