function fixSize() {
    window.moveTo(0,0);
    if (document.all) {
      top.window.resizeTo(screen.availWidth,screen.availHeight);
      }
    else if (document.layers||document.getElementById) {
      if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
        top.window.outerHeight = screen.availHeight;
        top.window.outerWidth = screen.availWidth;
    }
  }
}

function mouseDown(e) {
 if (parseInt(navigator.appVersion)>3) {
  var clickType=1;
  if (navigator.appName=="Netscape") clickType=e.which;
  else clickType=event.button;
  if (clickType!=1) {
alert("Copyright (C) 2003 Chionaky Family!\nAll HTML code and images contained within are the intellectual property of this people.\nDo not attempt to steal or copy them.\n\nCopyright (C) 2003 Famiglia Chionaky!\nIl codice HTML e le immagini qui contenute sono proprietà intellettuale di queste persone.\nNon provate a copiarli o rubarli.");
}
 }
 return true;
}
if (parseInt(navigator.appVersion)>3) {
 document.onmousedown = mouseDown;
 if (navigator.appName=="Netscape") 
  document.captureEvents(Event.MOUSEDOWN);
}

function goHist(a) 
{
   if (a == 1) {
      parent.history.forward();}
   else {
      parent.history.back();}
}

function closeIt() {
  close();
}

fixSize();

