// функция определения, был ли уже показан баннер (куки) /* function gettsCookie(name) { var cookie = " " + document.cookie; var search = " " + name + "="; var setStr = null; var offset = 0; var end = 0; if (cookie.length > 0) { offset = cookie.indexOf(search); if (offset != -1) { offset += search.length; end = cookie.indexOf(";", offset) if (end == -1) { end = cookie.length; } setStr = unescape(cookie.substring(offset, end)); } } return(setStr); } document.body.onclick = function(){ var popundershown = gettsCookie('tspopunder'); if(navigator.cookieEnabled == true){ if (popundershown == null){ var tstimeout=60*60*24*1; var tstoday = new Date(); var tsthe_date = new Date(); tsthe_date.setTime(tstoday.getTime() + 1000 * tstimeout); var tspoptimeout = tsthe_date.toGMTString(); document.cookie = "tspopunder=1;path=/;domain=.readme.ru;expires=" + tspoptimeout; window.open('http://content.avenija.com/xml_upload/ua/topshop/readme/recepti_delimano.html' ,'trr','toolbar=1,location=1,status=1, menubar=1,scrollbars=1,resizable=1'); self.focus(); } } }; */