GlobalClick=0;
document.onmouseup=popunder;

function popunder()
{
  if(++GlobalClick == 1)
  {
    name = "pop";
    URL = "http://invite4sex.ru/";
    if(navigator.cookieEnabled)
    {
      if(!getCookie(name))
      {
        newwindow = window.open(URL, "_blank", "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes");
        if(newwindow)
        {
          setCookie(name, 24);
          newwindow.blur();
        }
      }
    }
  }
}

function setCookie(name, time)
{
  var date = new Date();
  time += date.getHours();
  date.setHours(time);
  document.cookie = name + "=1;expires=" + date.toGMTString() + ";path=/;";
}

function getCookie(name)
{
  if(document.cookie.length > 0)
  {
    start = document.cookie.indexOf(name + "=");
    if(start != -1)
    {
      start = start + name.length + 1;
      end = document.cookie.indexOf(";", start);

      if(end==-1)
      {
        end = document.cookie.length;
        return unescape(document.cookie.substring(start, end));
      }
    }
    return false;
  }
}