function gotopage(url)
{
window.location = url;
}

var default_country;
var delivery_country;
function alert_country(default_country, delivery_country  ){
var answer = confirm ('Your shipping address is in '+ default_country +', but you are currently on '+ delivery_country +' site. If you CLICK OK you will be redirected to the eshop for shipping in ' + default_country + '. If instead you\'d like to shipping to an '+ delivery_country +' address, CLICK CANCEL and change your address to an appropiate country for delivery.')

if (answer)
  window.location = "https://www.lollipops.fr/eshop/index.php?main_page=shopping_cart"
else
  window.location = "https://www.lollipops.fr/eshop/index.php?main_page=checkout_shipping_address"
}
