/******************************************\
|| Created by: Raffaele Russo - 2RDesign  ||
|| website > www.etichettaindipendente.it ||
|| ______________________________________ ||
\******************************************/

function homepage() {
 try {
   var _man = "\r\n\r\nSi dovra' procedere alla impostazione manuale dal proprio Pannello delle Opzioni specificando 'http://www.CHATTASI.it/' come sito-pagina iniziale.";
   var _ua = navigator.userAgent.toUpperCase();
   if ((_ua.indexOf("MSIE") > 0) && (_ua.indexOf("OPERA") <= 0) && (_ua.indexOf("GECKO") <= 0) && (_ua.indexOf("WEBTV") <= 0)) {
	 return true;
   } else if ((_ua.indexOf("OPERA") != -1) || (_ua.indexOf("GECKO") != -1)) {
	 alert(unescape("Questo Browser non permette di impostare una Home-Page con una sintassi Javascript!" + _man));
   } else {
	 alert(unescape("Impossibile impostare una Home-Page per il Browser '" + navigator.userAgent + "' poiche' non si conosce la sintassi Javascript!" + _man));
   }
   return false;
 } catch(e) { return false; }
}
function favorites() {
 try {
   if ((window.sidebar) && (window.sidebar.addPanel)) {
	 if (navigator.userAgent.lastIndexOf("Netscape") != -1) {
	   window.sidebar.addPanel(document.title, "http://www.cathodicprotectionofmetals.it/", "");
	 } else {
	   window.sidebar.addPanel(document.title, "http://www.cathodicprotectionofmetals.it/", "");
	 }
   }
   if ((window.external) && ((navigator.platform == "Win32") || ((window.ScriptEngine) && (ScriptEngine().indexOf('InScript') + 1)))) {
	 window.external.AddFavorite(location.href.replace(/#.*/, ""), document.title);
   }
 } catch(e) { return false; }
}