function opengaz()
{
}

opengaz.prototype =
{
  oncopy:function()
  {
    var dat = new Date();
    dat = Math.round(dat.getTime()/1000);
    if(this.lastCopiedTime && (dat - this.lastCopiedTime == 0)) return true;
    window.event.cancelBubble = true;
    alert('При любом использовании материалов\nобязательна ссылка на газету "Открытая. Для всех и каждого."\n(http://www.opengaz.ru).');
    this.lastCopiedTime = new Date();
    this.lastCopiedTime = Math.round(this.lastCopiedTime.getTime()/1000);
    return true;
  }
}

var og = new opengaz();