var frequencyCap = 12;

function setCookie2(cookieName,cookieValue, expirehours)

 {
  if (frequencyCap > 0)
    {var today = new Date();
    var expire = new Date();
    expire.setTime(today.getTime() + 3600000 * frequencyCap);
    document.cookie = cookieName+"="+escape(cookieValue)+ ";expires="+expire.toGMTString() + "; path=/";
    }
    else
    {
    document.cookie = cookieName+"="+escape(cookieValue) + "; path=/";
     }
 }
  function ReadCookie(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 (ReadCookie('PopUnder') != 'ff') 
//     {
//document.write("<div id='PopWin' onclick='DivOff()'>"
//+"<div id='PopTit' onclick='DivOff()'><a title='Закрыть' href='javascript: PopShow()'><img src='/popunder/close.gif' border='0'></a>"
//+"</div>"
//+"<center><IFRAME SRC='/popunder/banner468.html' WIDTH=468 HEIGHT=60 NAME='POP' SCROLLING='no' FRAMEBORDER=0>"
//+"</IFRAME></center>"
//+"</div>");
//window.onscroll=MovePop;
//}

function DivOff() {
document.getElementById('PopWin').style.visibility='hidden';
setCookie2('PopUnder','ff', frequencyCap);
}
//amuleti
function PopShow() {
window.open("javascript:location.href='http://www.all-music.name/';","PopWin","width=640,height=480,resizable=1,toolbar=1,location=1,menubar=1,status=1,scrollbars=1'");
window.focus();
DivOff();
}

function MovePop() {
    document.getElementById('PopWin').style.top=document.body.scrollTop+450;
}
