function continuar()
{
	if (document.indexForm.destino.value == '' || document.indexForm.origen.value == '')
	{
		document.indexForm.destino.className = 'error';
		document.indexForm.origen.className = 'error';
		alert(index_idioma_alert18);
		document.indexForm.destino.className = 'requerido';
		document.indexForm.origen.className = 'requerido';
		return;
	}
	// comprobamos el formato de la fecha de regreso
	if (document.indexForm.fregreso.value != '')
	{
		if(!fecha_valida(document.indexForm.fregreso))
			return;
	}
	// comprobamos el formato de la fecha de salida
	if (document.indexForm.fsalida.value != '')
	{
		if(!fecha_valida(document.indexForm.fsalida))
			return;
	}
	// comprobamos la fecha de salida no es menos que hoy
	if (document.indexForm.fsalida.value != '')
	{
		if(!Date_inf_Hoy(document.indexForm.fsalida))
			return;
	}
	// comprobamos la fecha de regreso no es menos que hoy
	if (document.indexForm.fregreso.value != '') {
		if(!Date_inf_Hoy(document.indexForm.fregreso)) {
			return;
		}
	}

	if(document.indexForm.fregreso.value=='') {
		document.indexForm.tipovuelta.value='0';
		if(document.getElementsByName('chkvueltaabierta').length==1) {
			if(document.indexForm.chkvueltaabierta.checked==true) {
				document.indexForm.tipovuelta.value='1';
			}
		}
	  }
	else {
		document.indexForm.tipovuelta.value='2';
	}
	document.indexForm.submit();
}
