//---------------------------------------------------------------//
// settings.js - include file for configuring the order template //
//---------------------------------------------------------------//

// You can specify up to five print sizes with prices.
// Enter an empty string if you don't want all five sizes e.g.
// var size_5_text = new String("")

// text describing size of print size #1 and its price
var size_1_text = new String("5x7")
var price_size_1 = 10

// text describing size of print size #2 and its price
var size_2_text = new String("8x10")
var price_size_2 = 25

// text describing size of print size #3 and its price
var size_3_text = new String("11x14")
var price_size_3 = 50

// text describing size of print size #3 and its price
var size_4_text = new String("13x19")
var price_size_4 = 50

// text describing size of print size #3 and its price
var size_5_text = new String("20x30")
var price_size_5 = 50

//-------------------------------------------------//
// Settings to use with formmail.pl                //
// For details of formmail.pl see:                 //
// http://worldwidemart.com/scripts/formmail.shtml //
//-------------------------------------------------//

// order details sent to this email address
var email_address = new String("jerry@jerrysfoto.com")

// subject line in order emails
var email_subject = new String("Order for prints")

// name of sender of order emails
var email_sender = new String("Online order")

// location of formmail.pl script on your server
var formmail_script = new String("http://your.cgi.server.org/cgi-bin/formmail.pl")

