// JavaScript Document
function SubmitToPaypal(Instring)
{
	document.itemform.cmd.value="_cart";
	document.itemform.business.value="bmf@brittanyjewelry.com";
	document.itemform.currency_code.value="USD";
	document.itemform.item_name.value = GetText(Instring);
	document.itemform.amount.value = GetNumericPrice(Instring);
	
//	document.itemform.on0.value = "Ring Size";
//	document.itemform.os0.value = "8";
//	document.itemform.on1.value = "Chain Length";
//	document.itemform.os1.value = "16";

	business = document.itemform.business.value;
	cmd = document.itemform.cmd.value;
	curr = document.itemform.currency_code.value;
	item_name = document.itemform.item_name.value;
	amt = document.itemform.amount.value;
//	option0 = document.itemform.on0.value;
//	ringsize = document.itemform.os0.value;
	
//	alert("ringsize = " + ringsize + " option0 = " + option0);
//	alert(" business " + business + " cmd " + cmd + " curr " + curr + " item " + item_name + " amt " + amt);
	document.itemform.submit();
}
function ViewCart()
{
	document.viewcart.submit();
}