At this page there is a second orange button under the price called "Заказ в 1 клик". If you click it, input all needed data in the appeared form and then press the blue button "Купить" - you will see that no data is submitted.
Data cann't be submited due to this function:
$("#contactForm_oneclick").click( function(){
return false;
})
which is created to block this function
jQuery("#aux").click( function() {//функция, скрывающая форму
jQuery("#contactForm_oneclick").fadeOut();
jQuery("#window").fadeOut();
jQuery("#aux").css("display","none");
jQuery("html,body").css("overflow","auto");
} );
which is created to hide the form if you click somewhere else then at the form. How to change this situation and to make the button "Купить" work correctly?