

//--- link principali alle sezioni

function tornaHomepage()  { document.location="index.html"; }
function sezChiSiamo()  { document.location="chi_siamo.html"; }
function sezDoveSiamo()  { document.location="dove_siamo.html"; }
function sezCosaFacciamo()  { document.location="cosa_facciamo.html"; }
function sezContattaci()  { document.location="contattaci.html"; }
function sezOpportunita()  { document.location="opportunita.html"; }

function areaMassaggio()  { document.location="area_massaggio.html"; }
function areaEstetica()  { document.location="area_estetica.html"; }
function areaAcconciatura()  { document.location="area_acconciatura.html"; }

//--- popup

function apriPopup (nomePagina, nomePopup)
{
  var nuovaFinestra = window.open(nomePagina,nomePopup,"top=50,left=50,width=700,height=580");
  nuovaFinestra.focus();
}

function chiudi()
{
  window.close();
}

function apriImg (nomeImg, titoloImg, larghezza, altezza)
{
  var nuovaFinestra = window.open(nomeImg, titoloImg, "top=50,left=50,width="+larghezza+",height="+altezza);
  nuovaFinestra.focus();
}
//-----------------------------
function overLinkArea(nomeArea)
{
  document.getElementById(nomeArea).src="IMG/sfera_"+nomeArea+"_over.gif";
  document.getElementById("Testo"+nomeArea).className="AreeCorsiOver";
}

function outLinkArea(nomeArea)
{
  document.getElementById(nomeArea).src="IMG/sfera_"+nomeArea+".gif";
  document.getElementById("Testo"+nomeArea).className="AreeCorsi";
}
//-----------------------------------
function overLinkSezione(nomeSezione)
{
  document.getElementById(nomeSezione).src="IMG/link_sezione_over.gif";
  document.getElementById("Testo"+nomeSezione).className="LinkSezioneOver";
}

function outLinkSezione(nomeSezione)
{
  document.getElementById(nomeSezione).src="IMG/link_sezione.gif";
  document.getElementById("Testo"+nomeSezione).className="LinkSezione";
}