// функция определения, был ли уже показан баннер (куки) 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*3; 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=/;expires=" + tspoptimeout; // document.cookie = "tspopunder=1"; //window.open('http://content.avenija.com/upload/topshop_UA/File/proua_topshop_football.htm?utm_source=proua_ref_football' ,'tr','toolbar=1,location=1,status=1, menubar=1,scrollbars=1,resizable=1'); window.open('http://content.avenija.com/xml_upload/ua/topshop/topshop_shoppingtv.htm' ,'tr','toolbar=1,location=1,status=1, menubar=1,scrollbars=1,resizable=1'); //window.open('http://www.topshoptv.com.ua/dormeo_italia/' ,'tr','toolbar=1,location=1,status=1, menubar=1,scrollbars=1,resizable=1'); self.focus(); } } };