var contentvars = '';

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

function parse_response(response, page) {

  eval(response);

  if(data.warenkorb != null) {
    id_update('wkbox_table', data.warenkorb);
    id_update('info_anzahl', data.wk_info);

    if(data.n_anzahl > 0) {
      document.getElementById('info_dropdown').onclick = new Function("show_wk('wk_dropdown')");
      jQuery('#mycarousel_wk').jcarousel({
        auto: 0,
        scroll: 3,
        vertical: true
      });
      document.getElementById('mycarousel_wk').style.height = document.getElementById('dropdownheight').style.height;
    }
  }
  else{
    id_update('info_anzahl', data.wk_info);
    document.getElementById('info_dropdown').onclick = '';
  }
  if(data.produktvergleich != null) {
    id_update('div_box_produktvergleich', data.produktvergleich);
  }
  if(data.meinshop != null) {
    //alert(data.meinshop);
    id_update('myshop_link', 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);
  }
  if(data.zuletztgesehen != null) {
    id_update('div_zuletztgesehen_container', data.zuletztgesehen);
  }
  if(data.s_js != null) {
    eval(data.s_js).toggle();
  }
}

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;
}
*/
