// JavaScript Document

 function CalculateOrder(form)
  { if (form.os0.value == "7 x 10 archival print (unmatted)" )
  { form.shipping.value = 7.00; }
  if (form.os0.value == "11 x 15 archival print (unmatted)" )
  { form.shipping.value = 8.00; }
  if (form.os0.value == "12 x 18 archival print (unmatted)" ) 
  { form.shipping.value = 8.00; }
  if (form.os0.value == "16 x 24 archival print unmatted on Luster Paper" ) 
  { form.shipping.value = 11.00; }
  if (form.os0.value == "7 x 10 print, single matted to fit 11 x 14 frame" )
  { form.shipping.value = 8.00; }
  if (form.os0.value == "7 x 10 print, double matted to fit 11 x 14 frame" )
  { form.shipping.value = 8.00; }
  if (form.os0.value == "11 x 15 print, double matted to fit 16 x 20 frame" )
  { form.shipping.value = 12.00; }
  if (form.os0.value == "12 x 18 print, double matted to fit 18 x 24 frame" ) 
  { form.shipping.value = 14.00; } 
  if (form.os0.value == "Set of 5 Note Cards with envelopes" ) 
  { form.shipping.value = 2.00; }
    
  if (form.os0.value == "7 x 10 archival print (unmatted)" )
  { form.shipping2.value = 1.50; }
   if (form.os0.value == "11 x 15 archival print (unmatted)" )
  { form.shipping2.value = 2.00; }
  if (form.os0.value == "11 x 15 archival print (unmatted)" )
  { form.shipping2.value = 2.00; }
  if (form.os0.value == "12 x 18 archival print (unmatted)" ) 
  { form.shipping2.value = 1.00; }
  if (form.os0.value == "16 x 24 archival print unmatted on Luster Paper" ) 
  { form.shipping2.value = 1.00; }
  if (form.os0.value == "7 x 10 print, single matted to fit 11 x 14 frame" )
  { form.shipping2.value = 2.00; }
  if (form.os0.value == "7 x 10 print, double matted to fit 11 x 14 frame" )
  { form.shipping2.value = 2.00; }
  if (form.os0.value == "11 x 15 print, double matted to fit 16 x 20 frame" )
  { form.shipping2.value = 3.00; }
   if (form.os0.value == "12 x 18 print, double matted to fit 18 x 24 frame" ) 
  { form.shipping2.value = 3.00; }
  if (form.os0.value == "Set of 5 Note Cards with envelopes" ) 
  { form.shipping2.value = .75; }
  
  } 


