
$(document).ready(function(){

$('#fill_request').click(function(e){
    e.preventDefault();
    $("#error_sub").text('');
    $("#phone_sub").val('');
    $("#email_sub").val('');
    $("#fio_sub").val('');
    $("#div_sub_fields").show();
    $("#div_sub").text('');
    $('#create_req').show("normal");
});

$('.close').click(function(){
    $(this).parent().hide("normal");
});

});


function addsubscr()
{
var phone=$("#phone_sub").val();
phone=phone.replace(/\D/g,"");
var email=$("#email_sub").val();
var item_id=$("#item_id_sub").val();
var fio=$("#fio_sub").val();
if(parseInt(item_id)>0)item_id=parseInt(item_id); else item_id='null';
if (email=='')email='null';else email='%22'+email+'%22';
if (phone=='')phone='null';else phone='%22'+phone+'%22';
if (fio=='')fio='null';else fio='%22'+fio+'%22';

if ((phone != 'null') ||(email != 'null')) {

var url='/order_basket?addreq=[' + item_id +',' +email +',' + phone +',' +fio +']';
  $.getJSON(url,
    function(data){
    if (data.code=='1') {
      $("#div_sub_fields").hide();
      $("#div_sub").text(data.error);
      $("#error_sub").text('');
    } else {
      $("#error_sub").text(data.error);
    }
 });
}
}  

