/* EMAIL */
var email='res'+'ervas@'+'hotelc'+'omercio'+'.com';
var e='ma'+'ilto:'+e;

function enviar(c) {
  c.toEmail.value=email;
  c.submit();
}

/* FUERZA A METER LAS SECCIONES DENTRO DEL FRAME PRINCIPAL */
function indice(lang) {
  if (top.location.search!='') {
    var i=location.search.split('pag=')[1];
    if (i) {
      top.contenido.location.replace(i);
    }
  }
  else {
    top.contenido.location='/'+lang+'/portada.html';
  }
}

function indicespa(lang) {
  if (top.location.search!='') {
    var i=location.search.split('pag=')[1];
    if (i) {
      top.contenido.location.replace(i);
    }
  }
  else {
    top.contenido.location='/'+lang+'/spa/portada.html';
  }
}


/* CAMBIA EL COLOR DE FONDO DEL MENU SEGÚN ONMOUSEOVER/OUT */
function menufondo(cual,accion) {
  if (accion=='on') {
    document.getElementById(cual).className='menu-on';
    document.getElementById(cual+'b').className='menu-on';
  }
  else {
    document.getElementById(cual).className='menu';
    document.getElementById(cual+'b').className='menu';
  }
}

/* SEGÚN LA SECCIÓN SELECCIONADA, SE CAMBIA EL COLOR DE FONDO DEL MENU */
function estadoinicial(seccion) {
  var cuantosId=new Array('entorno','visita','tarifas','disponibilidad','spahome','servicios','cita','galeria','contacto','enlaces');
  var inicio=0;
  while (cuantosId.length > inicio) {
    if (cuantosId[inicio]=='galeria' || cuantosId[inicio]=='contacto' || cuantosId[inicio]=='enlaces') document.getElementById(cuantosId[inicio]).className='submenuoff';
    else if (cuantosId[inicio]=='spahome') self.focus();
    else document.getElementById(cuantosId[inicio]).className='menuoff';
    inicio++;
  }
  if (seccion=='galeria' || seccion=='contacto' || seccion=='enlaces') document.getElementById(seccion).className='submenuon';
  else if (seccion=='spahome') self.focus();
  else document.getElementById(seccion).className='menuon';
}


/* ENLACE A LOS CONTENIDOS */
function voy(lang,donde) {
  contenido.location='/'+lang+'/'+donde+'.html';
}


/* VER FOTO DE LA VISITA VIRTUAL (NO AMPLIAR) */
function verfoto(cual) {
  if (screen.width<=800) tam='800'; else tam='1024';
  contenido.document.getElementById('fotofondo').style.background='url(/img/foto.'+cual+'.'+tam+'.jpg) #e5f1f7 no-repeat';
}


/* VER CALLEJERO DE GUADIX */
function guadix() {
  w=700;
  h=650;
  l=(screen.availWidth)?(screen.availWidth-w)/2:0;
  t=(screen.availHeight)?(screen.availHeight-h)/2:0;
  window.open('/entorno.guadix.html','callejero','width='+w+',height='+h+',top='+t+',left='+l+',scrollbars=no,status=no');
}