function CalcTime(obj,item)
				{
					//alert(obj.checked);
					//alert(item);
					var location = document.getElementById("Location").value;
					var price = document.getElementById("TxtcalcPrice").value;
					var time = document.getElementById("TxtcalcTime").value;
					
					usdprice = [999.99,999.99,999.99,999.99,999.99,999.99,999.99,969.99,729.99,729.99,729.99,729.99,729.99,499.99,419.99,419.99,419.99,419.99,419.99,419.99,339.99,339.99,339.99,339.99,339.99];
					eurprice = [734.66,734.66,734.66,734.66,734.66,734.66,734.66,712.61,536.30,536.30,536.30,536.30,536.30,367.32,308.55,308.55,308.55,308.55,308.55,308.55,249.78,249.78,249.78,249.78,249.78];
					times = [65,65,65,65,65,65,65,60,45,45,45,45,45,30,25,25,25,25,25,25,20,20,20,20,20];
					if(obj.checked)
					{
						if(location == "US")
						{
							price = parseFloat(price) + parseFloat(usdprice[item]);
						}
						else
						{
							price = parseFloat(price) + parseFloat(eurprice[item]);
						}
						time = parseFloat(time) + parseFloat(times[item]);
					}
					else
					{
						if(location == "USD")
						{
							price = parseFloat(price) - parseFloat(usdprice[item]);
						}
						else
						{
							price = parseFloat(price) - parseFloat(eurprice[item]);
						}
						time = parseFloat(time) - parseFloat(times[item]);
					}
					
					document.getElementById("TxtcalcPrice").value = price.toFixed(2);;
					document.getElementById("TxtcalcTime").value = time;
				}

