
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function abrirPlanoSalones(theURL) {
  MM_openBrWindow(theURL,'HallFloorPlan', 'toolbar=no,titlebar=no,caption=no,scrollbars=yes,alwaysRaised=yes,resizable=no,width=615,height=350');
}

function abrirVisitaVirtual(theURL, nemo, idioma) {
  MM_openBrWindow(theURL + "&nemo=" + nemo.toLowerCase() + '&lang=' + idioma,'VirtualTour','toolbar=no,titlebar=no,caption=no,scrollbars=no,alwaysRaised=no,resizable=no,width=350,height=288');
}

// function abrirCallejero(theURL, nemo, idioma) {
//   MM_openBrWindow(theURL + '?IDHotel=' + nemo.toUpperCase() + '&lang=' + idioma,'SituationMap','toolbar=no,titlebar=no,caption=no,scrollbars=no,alwaysRaised=no,resizable=no,width=430,height=390');
// }

function abrirCallejero(theURL, imagen) {
  MM_openBrWindow(theURL + imagen,'SituationMap','toolbar=no,titlebar=no,caption=no,scrollbars=no,alwaysRaised=no,resizable=no,width=250,height=250');
}

function abrirMenuItem(theURL, name, type) {
  name = name.replace(/ +/g, "_");
  if (type == 3) { // Fast Good
    window.open(theURL, name, 'width=670,height=455,top=100,left=100,scrollbars=yes,resizable=yes');
  }
}

function abrirFastGood(theURL) {
  window.open(theURL, 'FastGood', 'width=670,height=455,top=100,left=100,scrollbars=yes,resizable=yes');
}

function isEmpty(campo) {
  if ((campo.value.length==0) || (campo.value==null)) return true;
  else return false;
}

function isInteger(campo) {
  return campo.value.match(/^\d+$/);
}

function isValidEmail(email) {
  var idx_at = email.value.indexOf('@');
  if (idx_at == -1 || idx_at == 0) return false;
  var idx_dot = email.value.indexOf('.', (idx_at + 2));
  if (idx_dot == -1 ) return false;
  return true;
}