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;
	count=1;
	//alert(count);
	
	if(count){
		x_addToBasket(id,count,addToBasketRes);
		//document.getElementById('g'+id).value='';
	}
	return false;
}

function addToBasketRes(res){
	if(res){
		obj=document.getElementById('basket0');
		if(obj){
			obj.style.display='none';
			document.getElementById('basket1').style.display='block';
		}
		
		//document.getElementById('orderItems').innerHTML=res['orderItems'];
		alert('Добавлено');
		
		//window.location.reload();
	}
}

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

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

