function createMinMax(thisid) { var value = $('#'+thisid).val(); var exploded = value.split('-'); if (typeof(exploded[0]) != 'undefined') { $('#lmn').val(exploded[0]); } else { $('#lmn').val(''); } if (typeof(exploded[1]) != 'undefined') { $('#lmx').val(exploded[1]); } else { $('#lmx').val(''); } } function hideHotel() { bindAjax('rgc'); $('#i_departure').fadeOut(); $('#i_lengthstay').fadeIn(); $('#i_stc').fadeIn(); $('#i_fot').fadeIn(); //$('#i_act').fadeIn(); $('#i_htn').fadeIn(); } function hideFlight() { bindAjax('rgc'); $('#i_departure').fadeIn(); $('#i_lengthstay').fadeOut(); $('#i_stc').fadeOut(); $('#i_fot').fadeOut(); //$('#i_act').fadeOut(); $('#i_htn').fadeOut(); } function showAll() { bindAjax('rgc'); $('#i_departure').fadeIn(); $('#i_lengthstay').fadeIn(); $('#i_stc').fadeIn(); $('#i_fot').fadeIn(); //$('#i_act').fadeIn(); $('#i_htn').fadeIn(); }