// gestion entorno
function cambiar_ititl(){
  window.parent.ictrl=1;
  switch (window.parent.ilang){
    case "es": window.parent.ititl='Son Granot, un pequeño hotel y restaurante con mucho encanto en el paraíso de Menorca'; break;
    case "ca": window.parent.ititl='Son Granot, un petit hotel i restaurant amb molt encant al paradís de Menorca'; break;
    case "fr": window.parent.ititl='Son Granot, un petit hôtel et restaurant de charme au paradis de Minorque'; break;
    case "de": window.parent.ititl='Son Granot, ein kleines Hotel und Restaurant mit Charme im Paradies Menorca'; break;
    case "it": window.parent.ititl='Son Granot, un piccolo hotel e ristorante di charme, nel paradiso di Minorca'; break;
    default: window.parent.ititl='Son Granot, a small, charming hotel and restaurant in the paradise of Minorca';
    }
  switch (window.parent.ilang){
    case "es": window.parent.iwong='www.mister-wong.es'; break;
    case "ca": window.parent.iwong='www.mister-wong.es'; break;
    case "fr": window.parent.iwong='www.mister-wong.fr'; break;
    case "de": window.parent.iwong='www.mister-wong.de'; break;
    case "it": window.parent.iwong='www.mister-wong.com'; break;
    default: window.parent.iwong='www.mister-wong.com';
    }
  switch (window.parent.ilang){
    case "es": window.parent.itags='hotel rural,hotel,menorca,hotel boutique,hotel romántico,hotel encanto,boda,viaje novios,mallorca,restaurante,mediterráneo,turismo sostenible,ecoturismo,turismo rural,escapada'; break;
    case "ca": window.parent.itags='hotel rural,hotel,menorca,hotel boutique,hotel romàntic,hotel encant,casament,viatge de nuvis,mallorca,restaurant,mediterrània,turisme sostenible,ecoturisme,turisme rural,escapada'; break;
    case "fr": window.parent.itags='hôtel  de campagne,hôtel ,minorque,hôtel boutique,gîte,hôtel romantique,hôtel de charme,mariage,majorque,voyage,restaurant,baléares,méditerranée,tourisme responsable,ecotourisme'; break;
    case "de": window.parent.itags='landhotel,hotel,menorca,romantisches hotel,charme hotel,hochzeiten,flitterwochen,majorca,reise,restaurant,balearen,mittelmeer,ecotourismus,finca'; break;
    case "it": window.parent.itags='paese albergo,hotel,minorca,hotel boutique,ristorante,hotel romantico,charme hotel,nozze,maiorca,viaggi,baleari,mediterraneo,responsabile,ecoturismo,turismo paese'; break;
    default: window.parent.itags='country hotel,minorca, boutique hotel,hotel,romantic hotel,charm hotel,wedding,honeymoon,majorca,travel,restaurant,mediterranean,responsible tourism,ecotourism,villa';
    }
}

function cambiar_es(){
  window.parent.ilang="es";
  cambiar_ititl();
  parent.framedown.location='Framedownpage.html';
} 
function cambiar_ca(){ 
  window.parent.ilang="ca";
  cambiar_ititl();
  parent.framedown.location='Framedownpage.html';
} 
function cambiar_fr(){  
  window.parent.ilang="fr";
  cambiar_ititl();
  parent.framedown.location='Framedownpage.html';
} 
function cambiar_de(){ 
  window.parent.ilang="de";
  cambiar_ititl();
  parent.framedown.location='Framedownpage.html';
} 
function cambiar_it(){ 
  window.parent.ilang="it";
  cambiar_ititl();
  parent.framedown.location='Framedownpage.html';
} 
function cambiar_en(){ 
  window.parent.ilang="en";
  cambiar_ititl();
  parent.framedown.location='Framedownpage.html';
}

function detectaridioma(){
idioma = window.parent.ilang;
switch (idioma){ 
  case "es": 
  cambiar_es(); 
  break; 
  case "ca": 
  cambiar_ca(); 
  break; 
  case "fr": 
  cambiar_fr();
  break; 
  case "de": 
  cambiar_de();
  break; 
  case "it": 
  cambiar_it();
  break; 
  default : 
  cambiar_en();
  break;
  }
}
