function blanco(imagen) {
	imagen.src="/sltwww/st/img/airlines/cia_blanco.gif";
}
function win_alt (altura) {var alt = screen.availHeight - 35;var y=(alt - altura) /2; return y;}
function win_anch (ancho) {var anch = screen.availWidth - 10;var x=(anch - ancho) /2;return x;}

function fotoHotelBlanco(imagen) {
	imagen.src="/hoteles/blanco.jpg";
} 

function validaCaracteresCampo( id ){
	var texto = $('#' + id ).val();
	var error = false;
	if( texto.length != 0 ){
		//Si algún caracter del texto del campo no coincide con los caracteresValidos( abcçdefghijklmnñopqrstuvwxyzàáèéìíòóùú espacio en blanco ) mostramos el error al usuario 
		//y salimos de la función
		var caracteresValidos = new RegExp('[abc\xe7defghijklmn\xf1opqrstuvwxyz\xe0\xe1\xe1\xe8\xe9\xec\xed\xf2\xf3\xf9\xfa\\s]','g');
		texto = texto.toLowerCase();
		for( var i = 0; i<texto.length && !error ; i++){
			if( texto.substr(i,1).search( caracteresValidos )== -1 ){
				error = true;
			}
		}
	}
	if( error ){
		return false;
	}
	else{
		return true;
	}
}

