function changeCurrency(currency)
{
	var url = '/server/currency.asp?currency=' + currency;

	new Ajax.Request(url, 
						{
						  method: 'post',
						  onSuccess: function(transport) 
						  {
							var lhref = location.href;
							
							var atpos = lhref.indexOf('#');
							if (atpos > -1) 
								location.href = lhref.substring(0, atpos);
							else						
								location.href = lhref;
							
							//alert(transport.responseText);
						  }						  
						}
					);

}