function call() {
var msg = $('#formx').serialize();
$.ajax({
type: 'POST',
url: 'doprocess.php?action=sample1',
data: msg,
success: function(data) {
$('#results').html(data);
$('#win').show();
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
});
return false;
}