waitMsg='<img src="/i/progress.gif" align="left" width="16" height="16"> загружается форма...';
waitMsg2='<img src="/i/progress.gif" align="left" width="16" height="16"> подождите...';


function ajaxtest(str){
	//alert(str)
	x_ajaxtestPhp(str,ajaxtestres);
}
function ajaxtestres(str){
	alert(str);
}

function addToBasket(id,count){
	count=document.getElementById('g'+id).value;
	//alert(count);
	
	if(count){
		x_addToBasket(id,count,addToBasketRes);
		document.getElementById('g'+id).value='';
	}
	return false;
}

function addToBasketRes(res){
	if(res){
		
		document.getElementById('orderBl1').style.display='inline';
		document.getElementById('orderBl2').style.display='inline';
		document.getElementById('orderWeight1').innerHTML=res['orderWeight'];
		document.getElementById('orderWeight2').innerHTML=res['orderWeight'];
		document.getElementById('orderSum1').innerHTML=res['orderSum'];
		document.getElementById('orderSum2').innerHTML=res['orderSum'];
		alert('Добавлено '+res['count']+' кг');
		
		//window.location.reload();
	}
}

function delFromBasket(id){
	if(confirm('Удалить?'))
		x_delFromBasket(id,delFromBasketRes);
}

function delFromBasketRes(res){
	if(res){
		//alert('Удалено');		
		window.location.reload();
	}
}
