$(document).ready(function(){
	// $('BODY, .MainTab').pngFix( );
	// $("#feedback_form").css('display','none');
});


function view_feedback_form()
{
  // $("#feedback_form").show();
  $("#feedback_form").css('display','block');
}

function check_fb()
{
  name = $("#fb_name").attr("value");
  phone = $("#fb_phone").attr("value");
  
  if(name != "") {
    if(phone != "")
      return true;
    else {
      alert("Введите Ваш телефон");
      return false;
    }
  } else {
    alert("Введите Ваше имя");
    return false;
  }
}
