	function hidecart(){
	
		if (html_cart == "off")
		{
			var cCart = document.getElementById('showcart');

			cCart.style.position ='absolute';
			cCart.style.left ='-500px';
			cCart.style.visibility ='hidden';

		}
		
	}


function returnDocument() {
	
	
		var firstpos = location.href.lastIndexOf('/')+1;
		var lastpos = location.href.length;
		var Namer = location.href.substring(firstpos,lastpos);
		
        
		if(Namer == "index.php" || Namer == false){
			html_cart ="off";
		}
    }

