/*	It's eShop3 Shopping Cart Routine Copy Right Infotechnica Ltd. 2000-2002	*/
function range_shipping(sum, shipping){
	if(sum == 0)return 0;
	var temp = "";
	if(parseInt("4999") != 0){
		if((sum >= parseInt("1")) && (sum <= parseInt("4999")))temp = "525";
	}
	else{
		if(sum >= parseInt("1"))temp = "525";
	}
	if(parseInt("1000000") != 0){
		if((sum >= parseInt("5000")) && (sum <= parseInt("1000000")))temp = "0";
	}
	else{
		if(sum >= parseInt("5000"))temp = "0";
	}
	if(temp != ""){
		if(temp.substr(temp.length - 1, 1) == "%")
			temp = Math.round(shipping * (1 - parseInt(temp.substr(0, temp.length - 1)) * 0.01));
		else{
			if(temp.substr(0, 1) == "-")
				temp = shipping + parseInt(temp);
			else
				temp = parseInt(temp);
		}
		if(temp < 0)temp = 0;
	}
	else
		temp = shipping;
	return temp;
}
/*	End of Routine	*/

