var contentvars = '';

function ajax_get(page, sprache) {
  asyncRequest(
    'GET',
    '/core/schaefershop/ajax_get.php?n_lfdpage='+page+'&n_lfdsprache='+sprache,
    function(o) {
      parse_response(o.responseText, page);
    }
  );
}

function parse_response(response, page) {

  eval(response);

  if(data.warenkorb != null) {
    id_update('div_box_warenkorb', data.warenkorb);
  }
  if(data.produktvergleich != null) {
    id_update('div_box_produktvergleich', data.produktvergleich);
  }
  if(data.meinshop != null) {
    id_update('div_box_meinshop', data.meinshop);
  }

  switch (page) {
    case 3:
      //
      break;
    default:
      break
  }


  if(data.wochenhighlights1 != null) {
    id_update('div_wochenhighlights1', data.wochenhighlights1);
  }
  if(data.wochenhighlights2 != null) {
    id_update('div_wochenhighlights2', data.wochenhighlights2);
  }
  if(data.wochenhighlights2 != null) {
    id_update('div_timer', data.timer);
  }
}

function id_update(id, text) {
  if(!document.getElementById(id)) {
    return;
  }
  else {
    document.getElementById(id).innerHTML = text;
  }
}

/*
function ajax_addvar(varname, value) {
  contentvars = contentvars+'&'+varname+'='+value;
}
*/
