/*
      Codigos gerais para o site
*/
function trocaSite(site) {
   h=window.location.hostname;
   c=h.split('.');
   nh=site;
   for (i=1; i<c.length; i++)
      nh+='.'+c[i];
   href=window.location.href;
   nhref=href.replace(h,nh);
   window.location.href = nhref;
   return false;
}