function cookiewarning(homeUrl,redirectUrl,shopName) {
if($("#cookie").length) {
$.ajax({url: "index.php?route=common/cookie/get", success: function(result) {
if(result) {
$("#cookie").html ('' +
'');
$("#cookiewarning").html('Wij gebruiken cookies om het winkelen gemakkelijk te maken. Als je verdergaat op onze website, dan ga je akkoord met deze cookies. ');
}
}});
}
}