//---------------------------------------------------------------//
// 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 Glossy")
// real cost - .29
var price_size_1 = 2

// text describing size of print size #2 and its price
var size_2_text = new String("5x7 Lustre")
// real cost - 1.49
var price_size_2 = 5

// text describing size of print size #3 and its price
var size_3_text = new String("8x10 Lustre")
// real cost - 1.99
var price_size_3 = 10




//-------------------------------------------------//
// 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("mark@msj3.com")

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

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

// location of formmail.pl script on your server
var formmail_script = new String("http://www.marksiegel.com/formsender.php")


