function ETSetCookie(cookieName,cookieValue, HoursTimeout) { if (HoursTimeout > 0) { var today = new Date(); var expire = new Date(); expire.setTime(today.getTime() + 3600000 * HoursTimeout); document.cookie = cookieName+"="+escape(cookieValue)+ ";expires="+expire.toGMTString() + "; path=/";} else { document.cookie = cookieName+"="+escape(cookieValue) + "; path=/"; } }
function ETGetCookie(cookieName) { var theCookie=""+document.cookie; var ind=theCookie.indexOf(cookieName);	if (ind==-1 || cookieName=="") return ""; var ind1=theCookie.indexOf(';',ind); if (ind1==-1) ind1=theCookie.length; return unescape(theCookie.substring(ind+cookieName.length+1,ind1));}
if (ETGetCookie('ETPopClosed') != '1' && !document.getElementById('ETPop')) { document.write('<style type="text/css">#ETPopA2{color: #FFFFFF; font-weight: bold; font-family: Tahoma; font-size: 11px;}#ETPopA{color: #DDDDDD; text-decoration: none; font-family: Tahoma; font-size: 11px;}#ETPopHead{background-color: #555555; padding: 1;}#ETPopTable{background-color: #555555; padding: 1; font-family: Tahoma; font-size: 11px;}#ETPop{position:fixed;_position:absolute; bottom: 3px; right:3px; _top:expression(document.body.scrollTop+document.body.clientHeight-this.clientHeight-3);_left:expression(document.body.scrollLeft + document.body.clientWidth - offsetWidth - 3);}</style>'); document.write("<div id='ETPop'><table width='480' height='146' border='0' cellpadding='0' cellspacing='0' id='ETPopTable'><tr><td id='ETPopHead' align=right><a id='ETPopA' title='Закрыть' href='javascript:ETPopClose7377();' onclick='ETPopClose7377(); return false;'>Закрыть <span id='ETPopA2'>[X]</span></a></td></tr><tr><td><iframe src=http://www.ero-tizzer.info/iframe.php?id=506&b=3 allowTransparency=true width=100% height=131 marginwidth=0 marginheight=0 scrolling=no frameborder=0></iframe></td></tr></table></div>"); }

function ETPopClose7377() { document.getElementById('ETPop').style.display='none'; ETSetCookie('ETPopClosed', '1'); }