/*jQuery.noConflict();*/
function enlace(event){
 	event.preventDefault();
 	var fechae = jQuery('.fentrada input').val()
	var fechas = jQuery('.fsalida input').val()
	var personas = jQuery('#personas').val();
	var enlace = "https://tpv.tpvbooking.net/?hotel=04a3f6d59702c&checkin="+fechae+"&checkout="+fechas+"&adultos="+personas+"&ninios=0&bebes=0&idioma=";

	//alert(enlace);
	var ifr = '<iframe src ="https://tpv.tpvbooking.net/?hotel=04a3f6d59702c&checkin='+fechae+'&checkout='+fechas+'&adultos='+personas+'&ninios=0&bebes=0&idioma='+locale+'" width="670px" height="1320px"></iframe>';


	jQuery(".post").html(ifr);

			//Se vuelve a cargar el enlace al recargar???

}


jQuery(document).ready(function() {





 jQuery("#enviar").click(enlace);


});

