<!-- Inizio Occultamento / Hide from old browsers

strURL = self.location.href;
strCurrProtocol = strURL.substring(0, strURL.indexOf('://'));
strCurrServer = strURL.substring(strCurrProtocol.length + 3, strURL.indexOf('/', strCurrProtocol.length + 3));
strCurrPath = strURL.substring(strCurrProtocol.length + 3 + strCurrServer.length + 1, strURL.lastIndexOf('/'));
strCurrPage = strURL.substr(strURL.lastIndexOf('/') + 1);

strURL = top.location.href;
strTopProtocol = strURL.substring(0, strURL.indexOf('://'));
strTopServer = strURL.substring(strTopProtocol.length + 3, strURL.indexOf('/', strTopProtocol.length + 3));
strTopPath = strURL.substring(strTopProtocol.length + 3 + strTopServer.length + 1, strURL.lastIndexOf('/'));
strTopPage = strURL.substr(strURL.lastIndexOf('/') + 1);

if ((strCurrProtocol != strTopProtocol) ||
    (strCurrServer != strTopServer)) {
   alert("www.russobros.it\n\nTra pochi istanti sarete reindirizzati all'indirizzo corretto del sito.");
   top.location.href = "http://www.russobros.it/h2/default.htm";
}

// Fine Occultamento / Stop hiding -->