


	function setCookie(name, value, expires, path, domain, secure) {
      var expDate = new Date();
      expDate.setTime(expDate.getTime() + (expires*1000));
      var thisCookie = name + "=" + escape(value) +
       ((expires) ? "; expires=" + expDate.toGMTString() : "") +
       ((path) ? "; path=" + path : "") +
       ((domain) ? "; domain=" + domain : "") +
       ((secure) ? "; secure" : "");
      document.cookie = thisCookie;
	}


	function getCookie(Name){
     var search = Name + "=";
	 if (document.cookie.length > 0){
		offset = document.cookie.indexOf(search);
		if (offset != -1){
		  offset += search.length;
		  end = document.cookie.indexOf(";", offset);
		  if (end == -1) end = document.cookie.length;
		  return unescape(document.cookie.substring(offset, end));
        }
	}}

	
	function go(url) {
	  var adult=getCookie("adult");
	  if(!adult) {
	   if(confirm("Az oldalainkon alkohol tartalmú italokat népszerusítünk és forgalmazunk. \n Kérjük, kattints az OK gombra, ha elmúltál 18 éves. Köszönjük!")) {
		 setCookie("adult",1,3600);
		 adult=1;
	  }}
	  if(adult) {
		 location.href=url;
	  }
	}
	
	
	
