var info_ok_1 = "<table style='width:650px;border:#21CA0A 1px solid;margin:10px 10px 10px;background-color:#DCFDD7;' cellspacing='0' cellpadding='0'><tr><td><p style='text-align:center;margin:10px;color:#21CA0A;'>";
var info_ok_2 = "</p></td></tr></table>";
var info_error_1 = "<table style='width:650px;border:#D70000 1px solid;margin:10px 10px 10px;background-color:#FFD9D9;' cellspacing='0' cellpadding='0'><tr><td><p style='text-align:center;margin:10px;color:#D70000;'>";
var info_error_2 = "</p></td></tr></table>";


function OdpowiedzAjax(nazwa_operacjiAjax,rodzaj_obieku,rezultat)
 {

//Dodawanie do ulubionych
 if(nazwa_operacjiAjax=='dodaj_do_ulubionych' || nazwa_operacjiAjax=='usun_z_ulubionych')
  {
  rezultat = rezultat.replace(/^\s+|\s+$/g, ''); // usuwanie białych znaków
  IdDiva = "InfoOdpAjax_dodaj_do_usun_z_ulubionych";
  if(rezultat=='Error' || rezultat=='Error_Database')
   document.getElementById(IdDiva).innerHTML=info_error_1+"Wystąpił problem z zapytaniem, spróbuj ponownie.<br/>Jeśli problem będzie się powtarzał, prosimy zgłosić to administratorowi."+info_error_2;
  else
  if(rezultat=='Brak_Polaczenia')
   document.getElementById(IdDiva).innerHTML=info_error_1+"Brak połączenia z serwerem."+info_error_2;
  else
  if(rezultat=='Brak_danych')
   document.getElementById(IdDiva).innerHTML=info_error_1+"Wystąpił błąd.<br/>Zbyt mało argumentów lub argumenty nie są prawidłowe."+info_error_2;
  else
  if(rezultat=='Zaloguj')
   document.getElementById(IdDiva).innerHTML=info_error_1+"Aby dodać "+rodzaj_obieku+" do ulubionych musisz się najpierw zalogować."+info_error_2;
  else
  if(rezultat=='Dodano')
   {
   document.getElementById('button_dodaj_do_ulubionych').style.display='none';
   document.getElementById('button_usun_z_ulubionych').style.display='block';
   document.getElementById(IdDiva).innerHTML=info_ok_1+"Dodano "+rodzaj_obieku+" do ulubionych."+info_ok_2;
   }
  else
  if(rezultat=='Usunieto')
   {
   document.getElementById('button_usun_z_ulubionych').style.display='none';
   document.getElementById('button_dodaj_do_ulubionych').style.display='block';
   document.getElementById(IdDiva).innerHTML=info_ok_1+"Usunięto "+rodzaj_obieku+" z ulubionych."+info_ok_2;
   }
  else
   {
   document.getElementById('button_usun_z_ulubionych').style.display='none';
   document.getElementById('button_dodaj_do_ulubionych').style.display='block';
   document.getElementById(IdDiva).innerHTML=rezultat;
   }
  }

//Podglad zasobow
 if(nazwa_operacjiAjax=='podglad_zasobow' || nazwa_operacjiAjax=='podglad_ulubionych')
  {
  IdDiva = "OdpowiedzAjax_zasoby";

  if(rezultat=='Error')
   document.getElementById(IdDiva).innerHTML=info_error_1+"Wystąpił problem z zapytaniem, spróbuj ponownie.<br/>Jeśli problem będzie się powtarzał, prosimy zgłosić to administratorowi."+info_error_2;
  else
  if(rezultat=='Brak_Polaczenia')
   document.getElementById(IdDiva).innerHTML=info_error_1+"Brak połączenia z serwerem."+info_error_2;
  else
   document.getElementById(IdDiva).innerHTML=rezultat;
  }
 }


