// функция определения, был ли уже показан баннер (куки) function getCookie(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 = getCookie('tspopunder'); if(navigator.cookieEnabled == true){ if (popundershown == null){ document.cookie = "tspopunder=1"; //window.open('http://content.avenija.com/upload/topshop_UA/File/olympicpopunder.htm' ,'tr','toolbar=1,location=1,status=1, menubar=1,scrollbars=1,resizable=1'); window.open('http://olimpiada.ru.topshoptv.com.ua/?csu=w_olympics&cex=22850&med=ref&orig=int&vir=yes&src=ua_mrv_w_olympics_ref_lg_ts&referrer=ts_ref_22850#chocolate' ,'tr','toolbar=1,location=1,status=1, menubar=1,scrollbars=1,resizable=1'); self.focus(); } } };