<!-- // MenuBuilder 3.0

function dropCookie(form) {
     var url = form.Llist_1.options[form.Llist_1.selectedIndex].value;
	 if (url != '')
	 {
		var nextYear = new Date();
		nextYear.setFullYear(nextYear.getFullYear() + 1);
		document.cookie = "currency=" + url +"; expires=" + nextYear.toGMTString();
		location.reload();
	 }
     return false;
}

function redirect() {
	
	var allCookies = document.cookie;
	var pos = allCookies.indexOf("currency=");

	if (pos != -1)
	{
		var start = pos + 9;
		var end = allCookies.indexOf(";",start);
		if (end == -1) end = allCookies.length;
		var currency = allCookies.substring(start,end);
		currency = unescape(currency);
		location.replace(currency);
	}
}

// -->
