//Add to Cart 
//Select the price and 
function setprice_1(obj)
{
	var setprice=0;
	var format="Unmounted";
/*	switch(obj.value)
	{
		case "A":
			setprice=0;
			format="Unmounted";
			break;
		case "B":
			setprice=5;
			format="Mounted on Silk Brocade";
			break;
		case "C":
			setprice=8;
			format="Mounted on a Silk Hanging Scroll";
			break;			
	}*/
	setprice = obj.value;
	var totalprice=parseFloat(document.form3.U_Price_ol.value)+parseFloat(setprice);
	document.getElementById("ht_total").innerHTML="USD "+totalprice;
	document.form3.format.value=document.getElementById("format"+setprice).value;
	document.form3.U_Price.value=totalprice;
	document.form3.Total_Price.value=totalprice;

}


function Whole_Payment(obj)
{
	var payment=obj.value;
	document.getElementById("Total_Price").value=payment;
	document.getElementById("U_Price").value=payment;
	document.getElementById("span_totalprice").innerHTML="USD " + payment ;
}

/*function pro_customize_click()
{
	document.getElementById("product_customize").style.display="";
}
function pro_customize_cancel()
{
	document.getElementById("product_customize").style.display="none";
}*/
