// JavaScript Document
function show_currency_popup(url,value)
{
	var currency = url.substr(url.length-3,3);

	if ( ( (currency=="GBP") || (currency=="EUR") ) && (locale=='gb-en') )
	{
		location.href = url;
	}
	else if ( ( (currency=="USD") || (currency=="CAD") ) && (locale=='us-en') )
	{
		location.href = url;
	}
	else
	{

		if (document.getElementById('ddl_material'))
		{document.getElementById('ddl_material').style.display='none';}

		if (document.getElementById('ddl_collection'))
		{document.getElementById('ddl_collection').style.display='none';}

		if 	(document.getElementById('ddl_occasion'))
		{document.getElementById('ddl_occasion').style.display='none';}


		document.getElementById('currency_popup').style.display = 'block';

		document.getElementById('currency_yes').href = url+"&change_country=yes";
		if (currency=="USD")
		{
			document.getElementById('popup_text').innerHTML = 'You are about to enter the North American website in US Dollars, and will lose all items in your basket. Do you wish to continue?';
		}
		else
		{
			document.getElementById('popup_text').innerHTML = 'You are about to enter the '+value+' website and will lose all items in your basket. Do you wish to continue?';
		}
		new Effect.ScrollTo('currency_popup');
	}

}

function hide_currency_popup()
{
	//new Effect.SwitchOff('currency_popup');
	Effect.Fade('currency_popup');
	if 	(document.getElementById('ddl_material')) {document.getElementById('ddl_material').style.display='inline';}
	if 	(document.getElementById('ddl_collection')) {document.getElementById('ddl_collection').style.display='inline';}
	if 	(document.getElementById('ddl_occasion')) {document.getElementById('ddl_occasion').style.display='inline';}
	//document.getElementById('currency_popup').style.display = 'none';
}
