/*
Update quantity box on product info page.
Field Ids:
cart_quantity1
cart_quantity2
*/
function updateQty(updatedField, fieldToUpdate){
	document.getElementById(fieldToUpdate).value = document.getElementById(updatedField).value
	/*alert(updatedField);
	alert(fieldToUpdate);*/
}