function winkelmandPlaats(){ id = $('picid').value; aantal2 = $('aantal').options[$('aantal').selectedIndex].value; formaat2 = $('formaat').options[$('formaat').selectedIndex].value; var req = new Request({ url: '/inc/page/winkelmandje/plaatsen.php?i='+id+'&a='+aantal2+'&f='+formaat2, onSuccess: function(txt){ //alert(txt); vernieuwWinkelmand(); TB_remove(); } }).send(); } function winkelmandjeLegen(){ if(confirm("Weet u zeker dat u uw winkelmandje wilt legen?")){ var req = new Request({ url: '/inc/page/winkelmandje/legen.php', onSuccess: function(txt){ alert(txt); vernieuwWinkelmand(); } }).send(); } } function extraItem(id){ var req = new Request({ method: 'get', url: '/inc/page/winkelmandje/items.php', onSuccess: function(txt){ vernieuwWinkelmand(); } }).send('i='+id+'&f=extra'); } function minderItem(id){ var req = new Request({ method: 'get', url: '/inc/page/winkelmandje/items.php', onSuccess: function(txt){ vernieuwWinkelmand(); } }).send('i='+id+'&f=minder'); } function anderFormaat(id){ var req = new Request({ method: 'get', url: '/inc/page/winkelmandje/items.php', onSuccess: function(txt){ vernieuwWinkelmand(); } }).send('i='+id+'&f=formaat'); } function vernieuwWinkelmand(){ var req = new Request({ method: 'get', url: '/inc/page/winkelmandje/winkelmandje.php', onSuccess: function(txt){ $('winkelmandje').innerHTML = txt; } }).send('i=1'); } ////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////WINKELMANDJE PAGINA ///////////////////////////////////////////////////////////////////////////// function extraItem2(id){ var req = new Request({ method: 'get', url: '/inc/page/winkelmandje/items.php', onSuccess: function(txt){ location.reload(true); } }).send('i='+id+'&f=extra'); } function minderItem2(id){ var req = new Request({ method: 'get', url: '/inc/page/winkelmandje/items.php', onSuccess: function(txt){ location.reload(true); } }).send('i='+id+'&f=minder'); } function anderFormaat2(id){ var req = new Request({ method: 'get', url: '/inc/page/winkelmandje/items.php', onSuccess: function(txt){ location.reload(true); } }).send('i='+id+'&f=formaat'); } function winkelmandjeLegen2(){ if(confirm("Weet u zeker dat u uw winkelmandje wilt legen?")){ var req = new Request({ url: '/inc/page/winkelmandje/legen.php', onSuccess: function(txt){ alert(txt); location.reload(true); } }).send(); } }