 function asc_currency_selector_on_change(url)
 {
     sel = document.getElementById('currency_selector');
     currency_id = sel.options[sel.selectedIndex].value;
     url = url.replace('%currency_id_value%', currency_id);
     window.location = url;
 }

function asc_go(url)
{
	
    if (url == '') return false;
	location.href=url;
	document.location.href=url;
	window.location.href=url;
	location.replace(url);

	if(document.getElementById('input_promo_code').value!='')
	{
		var promoVal = document.getElementById('input_promo_code').value;
		document.location.href=url;
	}
	else
	{
		document.location.href=url;
	}
	return true;
}

