var addr_sito =  'http://www.gruppoattacchivda.it/';
var root =  'index.htm';

function Pagina_Isolata() {

        return((top.location.pathname == this.location.pathname) ||
            ((top.location.hostname != "") && (top.location.href != addr_sito) && (this.location.hash != "") ) ||
            ((top.location.hostname == "") && (top.location.pathname == this.location.pathname) &&  (this.location.hash != ""))
           )

}

function Display_Url() {

        if (Pagina_Isolata())
          {
           document.write('<A href="' + addr_sito + '" target="_blank"> ' + addr_sito + '</A>')
          }
          else
          {
           document.write(addr_sito)
          }
}

function Display_Home() {


        if (Pagina_Isolata())
                       {
           document.write('<P align="left"><A href="' + addr_sito + '" target="_blank"><IMG border="2" bordercolor="#800040" src="../images/Home11.gif" alt="Homepage" title="Homepage" width="67" height="28"></A></P>')
          }

}

