//---------------------------------------------------------------------//
// prices.js - include file for configuring the DSMI PayPal template   //
//---------------------------------------------------------------------//
    document.write('<body link= "#FFFFFF" vlink= "#FFFFFF" alink= "#FFFFFF">')
    document.write('</body>')
	
// Change this to the email address for your PayPal account
var paypalAccount = new String("sales@imagequine.com")

// Change this to point to your home page
// Use this if you don't want a link: var HomeURL = new String("")
var HomeURL = new String("http://www.imagequine.com")

// percentage discount, set to 0 for no discount
var discount = 0;
// var discount = 10;	// Use this for 10% discount

var numOptions = 10;	// this number must match the number of entries below
var description = new Array(numOptions);
var price = new Array(numOptions);

// Edit the description text and price for each item as required
// This is the price table for CROPPED prints
description[0] = "Small 5x7 Print, Unmounted";   price[0] = 55; // price/description #1
description[1] = "Medium 8x10 Print, Unmounted";   price[1] = 85; // price/description #2
description[2] = "Large 11x14 Print, Unmounted";  price[2] = 165; // price/description #3
description[3] = "Extra Large 16x20 Print, Unmounted"; price[3] = 275; // price/description #4
description[4] = "Small 5x7 Print, Mounted";    price[4] = 75; // price/description #5
description[5] = "Medium 8x10 Print, Mounted";    price[5] = 99; // price/description #6
description[6] = "Large 11x14 Print, Mounted";   price[6] = 185; // price/description #7
description[7] = "Extra Large 16x20 Print, Mounted";  price[7] = 295; // price/description #8
description[8] = "Large 11x14 Print, in Wood Frame";  price[8] = 275; // price/description #9
description[9] = "Extra Large 16x20 Print, in Wood Frame";  price[9] = 395; // price/description #10

// Change these values to specify the number of rows and columns per page
var numRows = 4
var numColumns = 4

//---------- Don't change anything below this line! -------------//

function orderPrintSize(filename, reference, desc, amount)
{
    if (discount < 100 && discount > 0)
    {
    	amount = Math.round((100 - discount) * amount);
    }
    else
    {
        amount = Math.round(100 * amount);
    }
    var price = new String(amount);
    price = price.substr(0, price.length - 2) + "." + price.substr(price.length - 2, 2);
    document.write('<tr>')
    document.write('<td valign="top">')
    document.write('<font size="3" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">' + desc + ' $' + price)
    document.write('</font></td>')
    document.write('<td>')
    document.write('<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal">')
    document.write('<input type="hidden" name="cmd" value="_cart">')
    document.write('<input type="hidden" name="business" value="' + paypalAccount + '">')
    document.write('<input type="hidden" name="item_name" value="' + desc + ' - ' + filename + '">')
    document.write('<input type="hidden" name="item_number" value="' + reference + '">')
    document.write('<input type="hidden" name="amount" value="' + price + '">')
    document.write('<input type="hidden" name="add" value="1">')
    document.write('<p><font size="5" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">')
    document.write('<input type="image" name="submit" src="add_to_cart.gif" alt="Order this print" align="bottom" border="0" width="106" height="24">')
    document.write('</font></p>')
    document.write('</form>')
    document.write('</td>')
    document.write('</tr>')
}

function printSizes(filename, reference)
{
    document.write('<font size="3" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">')
//insert information line above the price list
document.write('<strong>')
document.write('- Photographs are available unmounted, mounted on rigid board or in rustic wide <a href="../frame.htm" target="_blank">wood frames</a> -')
document.write('<br>- All prices include shipping within the continental US. <a href="mailto:info@imagequine.com">Contact us</a> for international rates - ')
		document.write('</strong></p>')
    if (discount < 100 && discount > 0)
    {
    	document.write("The prices below include a discount of " + discount + "%");
    }
    document.write('</font>')
    document.write('<table border="0">')
    for (i = 0; i < description.length; i++)
    {
        orderPrintSize(filename, reference, description[i], price[i])
    }
    document.write('</table>')
//insert information line below the price list
document.write('<strong><a href="mailto:info@imagequine.com">Contact us</a> for quantity discounts, to purchase by check or outside the US </p><a href="../index.html">Home</a>')
}

function viewCart()
{
	document.write('<form action="https://www.paypal.com/cgi-bin/webscr" method="post" name="_xclick" target="paypal">')
    	document.write('<input type="hidden" name="cmd" value="_cart">')
    	document.write('<input type="hidden" name="business" value="' + paypalAccount + '">')
    	document.write('<input type="hidden" name="display" value="1">')
    	document.write('<p align="center">')
    	document.write('<input type="image" name="submit" src="view_cart.gif" alt="View the contents of your shopping cart" align="bottom" border="0" width="130" height="32">')
    	document.write('</p>')
	document.write('</form>')
}
