<!-- hide script from old browsers

// FUNZIONE CHE DISABILITA LA TASTIERA ED IL TASTO DESTRO DEL MOUSE


function right(e)
    {
	  if(navigator.appName=='Netscape'&&(e.which==3||e.which==2))
         return false;
	  else if(navigator.appName=='Microsoft Internet Explorer'&&(event.button==2||event.button==3))
             {alert("Spiacente! Tasto destro disabilitato!");return false;}
	     return true;
	}

function keypressed()
    {
	 alert("Spiacente! Tasti disabilitati!");
	}
document.onmousedown=right;
document.onkeydown=keypressed;


// FUNZIONE CHE SCRIVE SULLA STATUSBAR
/*
    var hellotext=" W W W . A N T I X . I T          Il sito pił goliardico ed umoristico del web"
    var thetext=""
    var started=false
    var step=0
    var times=1
    function welcometext()
    {
      times--
      if (times==0)
      { 
        if (started==false)
        {
          started = true;
          window.status = hellotext;
          setTimeout("anim()",1); 
        }
        thetext = hellotext;
      }
    }
    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("welcometext()",4000)
      times++
    }
    function anim()
    {
      step++
      if (step==20) {step=1}
      if (step==1)  {window.status=' '+thetext+' '}
      if (step==2)  {window.status=' '+thetext+' '}
      if (step==3)  {window.status=' '+thetext+' '}
      if (step==4)  {window.status=' '+thetext+' '}
      if (step==5)  {window.status=' '+thetext+' '}
      if (step==6)  {window.status=' '+thetext+' '}
      if (step==7)  {window.status=' '+thetext+' '}
      if (step==8)  {window.status=' '+thetext+' '}
      if (step==9)  {window.status=' '+thetext+' '}
      if (step==10) {window.status=' '+thetext+' '}
      if (step==11) {window.status=' '+thetext+' '}
      if (step==12) {window.status=' '+thetext+' '}     
      if (step==13) {window.status=' '+thetext+' '}
      if (step==14) {window.status=' '+thetext+' '}
      if (step==15) {window.status=' '+thetext+' '}
      if (step==16) {window.status=' '+thetext+' '}
      if (step==17) {window.status=' '+thetext+' '}
      if (step==18) {window.status=' '+thetext+' '}
      if (step==19) {window.status=' '+thetext+' '}
 setTimeout("anim()",100);
    }*/
//end hiding script from old browsers -->
