function AddToCart()
{
	var stype;
    var sItem;

	//if(document.getElementById("type").value == 0)
	//	stype = "Print Only";
	//else if(document.getElementById("type").value == 1)
	//	stype = "Matted";
	//else if(document.getElementById("type").value == 2)
	//	stype = "Framed and Matted";

	var sSerial = document.getElementById("Serial").childNodes[0].data
	var sAddress = "https://www.paypal.com/cgi-bin/webscr?cmd=_cart&add=1&business=dean@dsprophoto.com";
	var sAmount = "&amount=" + CurrentPrice;
	
	
	var typeSelect = document.getElementById("type");
	
    if(sODSize != null)
        sItem = "&item_name=" + sSerial + " " + typeSelect.options[typeSelect.selectedIndex].text + " (" + sODSize + " O.D.)";
    else
        sItem = "&item_name=" + sSerial + " " + typeSelect.options[typeSelect.selectedIndex].text;

	var sTotal = sAddress + sItem + sAmount;

	window.open(sTotal,"paypal","width=900,height=600,scrollbars,location,resizable,status");
}

function ViewCart()
{
	var sTotal = "https://www.paypal.com/cgi-bin/webscr?cmd=_cart&display=1&business=dean@dsprophoto.com";
	window.open(sTotal,"paypal","width=900,height=600,scrollbars,location,resizable,status");
}

function SetPriceText(amount)
{
	document.getElementById("PriceLabel").childNodes[0].data = "Price: $" + amount.toString(10) + ".00";
	CurrentPrice = amount;
	
	if(CurrentPrice<50)
	{
		CurrentShipping = 10;
	}
	if(CurrentPrice>50)
	{
		CurrentShipping = 15;
	}
	if(CurrentPrice>100)
	{
		CurrentShipping = 20;
	}
	if(CurrentPrice>200)
	{
		CurrentShipping = 30;
	}
	if(CurrentPrice>400)
	{
		CurrentShipping = 45; 
	}
	
	document.getElementById("ShippingLabel").childNodes[0].data = "Shipping: $" + CurrentShipping.toString(10) + ".00";
}