
	 function regionChange(object)
	 {
		if (object.options[object.selectedIndex].value == "aus")
		{
			// var wOpen = window.open ("http://www.goldbullion.com.au/au/alert_message.php");
			top.location='/index.asp';
		}
		else
		{
			top.location='' + object.options[object.selectedIndex].value;
		}
	 }

