			function show_shop_cart_status()
			{

					if (!http) http = getRequestObj();
					if (!http) return false;
					
						http.open('get', 'shop_cart_cont.php');
					///////////////////////////////////////////////////////////////
					http.onreadystatechange = 

					function() 
					{
						
						if ((http.readyState == 4) && (http.status == 200))
						{
							var rez = http.responseText;
							
							//alert(rez);
							
							////////////////////////////
							re1 = /item/i;
							re2 = /rub/i;

							r = rez.replace(re1, "товар(ов):");
							r = r.replace(re2, "рублей");
							///////////////////////////
							
							//==================Hide shipping cart content for url with '_mobile'=================
							var loc = location.toString();
								
							
							re3 = /_mobile/i;
							r_loc_rez = loc.match(re3);
							////////////////////////
							if(!r_loc_rez)
								document.getElementById("lblShoppingCart").innerHTML = r;
							else
								document.getElementById("lblShoppingCart").innerHTML = "  ";
							//==============================================================================		
							
						}
											
					}		
					/////////////////////////////////////////////////////////////////
					
				http.send(null);
				
			
			}
