// JavaScript Document
<!--
var message="© Innubis 2004™ [Все права защищены]";
function click(e) {
if (document.all) {
if (event.button == 2) {

alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
var tit = document.title;
var c = 0;
function writetitle()
{
  document.title = tit.substring(0,c);
  if(c==tit.length)
  {
	c = 0;
	setTimeout("writetitle()", 3000)
  }
  else
  {
	c++;
	setTimeout("writetitle()", 200)
  }
}

writetitle()
// -->




