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

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

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

// text describing size of print size #2 and its price
var size_2_text = new String("20x24")
var price_size_2 = 250

// text describing size of print size #3 and its price
var size_3_text = new String("24x30")
var price_size_3 = 325

// text describing size of print size #4 and its price
var size_4_text = new String("30x40")
var price_size_4 = 375


//-------------------------------------------------//
// 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("order@chagaresphotography.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://chagaresphotography.com/cgi-bin/formmail.cgi")


