//---------------------------------------------------------------//
// 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("4x6")
var price_size_1 = 1

// text describing size of print size #2 and its price
var size_2_text = new String("8x10")
var price_size_2 = 8

// text describing size of print size #3 and its price
var size_3_text = new String("16x20")
var price_size_3 = 20


//-------------------------------------------------//
// 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("pictures@wimerville.com")

// subject line in order emails
var email_subject = new String("Sandites.com Pictures Order")

// 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("html://www.wimerville.com/var/www/cgi-bin/dada/extras/scripts/FormMail/FormMail.pl")


