var WK_del_url = HTTP_SERVER +"includes/add_2_cart.php";

function WKDel(e_id, g_id, w_id, action) {
	var ANZ = $('#eg_anz_'+e_id+'_'+g_id).html();
	if(ANZ<=1) action = "del";
	$.get(WK_del_url, { e_id: ""+e_id+"", g_id: ""+g_id+"", w_id: ""+w_id+"", action: ""+action+"" }, function(data){
		$('#eg_anz_'+e_id+'_'+g_id).html("<img src='"+ HTTP_SERVER +"images/loading.gif' alt='wird geladen' />");
		if(action == "del" || data == 0){
			$('#div_einh_'+e_id+'_'+g_id).remove();
		}
		if(action == "remove"){
			$('#eg_anz_'+e_id+'_'+g_id).html(data);	
		}
		//SCI("wk");
	});
}	

