function changeCountry(country){
	$("#selectsCountry").text(country);
	$.post('server/',{'dtype':'setCountry',c:country},function(data){
		window.location.reload(true);
	});
}
function addProduct(prId,lblTxt,price){
	if($("#cartTr"+prId).length==0){
	
	$.post("server/",{'dtype':'adProduct',pId:prId,lbl:lblTxt,cost:price},function(){
		$("#tblCart").append('<tr id="cartTr'+prId+'"><td>'+lblTxt+'</td><td><a href="javascript:delProd('+prId+')" class="delbut"><img src="images/shop_cross.png" width="23" height="19" /></a></tr>');
		
	});
	}
}
function delProd(prId,element){
	$.post('server/',{'dtype':'delProduct',delid:prId},function(data){
		if(data=='deleted'){
				$("#cartTr"+prId).slideUp(200,function(){$(this).remove();});
				if(typeof($("#MycartTr"+prId))!='null'){
					$("#MycartTr"+prId).remove();
					if($("#shpCart tr").size()==1){
						document.location.href='shop.php';
						return true;
					}
				}
				document.location.href = document.location.href;
			return true;	
		}
		});

	
	}

function setLanguage(language){
$.post("server/",{dtype:'setLang',lang:language},function(data){
	if(data=='seted'){
		document.location.href=document.location.href;
	}
});	
}
