
  function LoadContabilita()
     {
     if (document.domain == "www.ilcommercialistadegliagenti.it" || document.domain == "ilcommercialistadegliagenti.it" || document.domain == "localhost")
         window.location.href = "http://www.contabilitaperagenti.it";
     }



     


function ComponiMail(element_id)
   {
   var element;
   var e_mail;
   e_mail = "mailto:" ;
   e_mail = e_mail + element_id ;
   e_mail = e_mail + "@";
   e_mail = e_mail + "ContabilitaPerAgenti.it";
   element = document.getElementById(element_id);
   element.setAttribute('href',e_mail);
   return ;
   }


function Login()
   {
   // create demo window
   var window_properties = 'menubar, status, scrollbars, resizable, toolbar, location';
   var window_tag = 'COL';
   var demowindow = window.open('about:blank', window_tag, window_properties);
   try
      {
      demowindow.resizeTo (screen.width, screen.height);
      demowindow.moveTo (0, 0);
      }
   catch (e)
      {
      }

   // submit form (it will go to demo window using target)
   var FormLogin;
   //window.alert( "Attenzione : Nome Utente o Password Errati!");
   FormLogin = document.getElementById("FormLogin");
   FormLogin.submit();

   // give focus to demo window
   demowindow.focus();
   return ;
   }


function OpenBrowswerWindow(url)
   {
   var new_window ;
   new_window = window.open(url, "","scrollbars=yes,width=591,height=400","");
   new_window.focus()
   return true ;
   }

