<!-- hide script from old browsers

// ************************************************************************** //
// * FUNZIONE CHE SCRIVE IL TESTO SULLA STATUSBAR                           * //
// ************************************************************************** //

defaultStatus = "www.yossam.it";

// ************************************************************************** //
// * FUNZIONE CHE PERMETTE DI NON VISUALIZZARE LA MSGBOX DI ERRORE          * //
// ************************************************************************** //

    onerror = errWindow
    function errWindow() 
    {
        debugwin.document.close()
        return true
    }


// ****************************************************************************** //
// * FUNZIONE CHE PERMETTE DI DISABILITARE LA SELEZIONE DEL TESTO SULLA PAGINA, * //
// * IL TASTO DESTRO DEL MOUSE E IL DRAG & DROP SULLA BARRA DEGLI INDIRIZZI     * //
// ****************************************************************************** //

     function disableselect(e)
      {return false}

     function reEnable()
      {return true}

//if IE4+
   document.onselectstart=new Function ("return false")
   document.ondragstart=new Function ("return false")
   document.oncontextmenu=new Function ("return false")   

//if NS6
     if (window.sidebar) 
         {
          document.onmousedown=disableselect
          document.onclick=reEnable
         }

// ************************************************************************** //
// * FUNZIONE CHE RIMANDA ALLA PAGINA PRINCIPALE                            * //
// ************************************************************************** //


//    if (top.location == self.location) 
//       {top.location.href = "http://www.yossam.it"} 


//end hiding script from old browsers -->