
function hypocalc_mini() {

     if($('#price_mini').val()=='') {
         $('#alert_message').html('Zadajte hodnotu nehnuteľnosti');
         $('#alert').show(); return false;
     }
     else {
         $('#alert').hide();
     }
         
     if($('#rate_mini').val()=='') {
         $('#alert_message').html('Zadajte výšku požadovaného úveru');
         $('#alert').show(); return false;
     }
     
	 
     $.ajax({
      url: 'http://www.hypocentrum.sk/ajax/hypocalc.php',
      cache: false,
      type: "GET",
      data: ({
              price : $('#price_mini').val(),
              rate : $('#rate_mini').val(),
              years : $('#years_mini').val(),
              usura : $('#year_usura_mini').val()
          }),
      success: function(html){         
         $('#hypocalc_mini_container').html(html).hide().fadeIn('slow');
      }
      
     });

}

function hypocalc() {

    if($('#price').val()=='') {
         $('#alert_message').html('Zadajte hodnotu nehnuteľnosti');
         $('#alert').show(); return false;
     }
     else {
         $('#alert').hide();
     }
         
     if($('#rate').val()=='') {
         $('#alert_message').html('Zadajte výšku požadovaného úveru');
         $('#alert').show(); return false;
     }
     else {
         $('#alert').hide();
     }
	 
     if($('#state_contrib').is(':checked')) {
	 cntrb = true;
     } else {
	 cntrb = false;
     }
	 
     $.ajax({
      url: 'http://www.hypocentrum.sk/ajax/hypocalc_full.php',
      cache: false,
      type: "GET",
      data: ({
              price : $('#price').val(),
              rate : $('#rate').val(),
              years : $('#years').val(),
              usura : $('#year_usura').val(),
	      contrib : cntrb,
	      onetime : $('#onetime').val()
          }),
      success: function(html){
         $('#mortgage_resulthandler').html(html).hide().fadeIn('slow');
      }
      
     });

}
