//<script LANGUAGE="JavaScript">
<!--
//==================================================================================================
// Set up the PayPal Stuff
// ---------------------------------------------------------
// PAYPAL STUFF
// Return Page ID - doesn't seem to make a difference
// Cancel Page ID
// PayPalDelayInSecs - is the inteval in seconds used to
//                     delay the Submit for each item on the
//                     PayPalOrderForm generated from the users
//                     selection. with a quick connection 1 sec works
//                     but 4 seems to work more reliably
// ---------------------------------------------------------
// Return Page for PAYPAL
var PCPReturnPage = 'www.pcplotter.com/price.htm';
var PCPCancelPage = 'www.pcplotter.com/price.htm';
var PayPalDelayInSecs = 3;
//-------------------------------------------------------
// To change the Prices just change the following
//-------------------------------------------------------
var VATRate = 0.175;                 //- VAT rate This will be used to calculate VAT
var Currency = 0;                   //0 GBP     , 1 EUR   , 2 USD    //Gets set by the user
// Currency and VAT Arrays - will be retreived using the Currency interger as the index
// e.g. Currency = 0, CurrencyString[Currency] = 'GBP'
//                    CurrencySymbol[Currency] = '&pound'
//                    UseVAT[Curency] = 1
var CurrencyString =         new Array('GBP'    ,    'EUR', 'USD');  //Currency String to display
var CurrencySymbol =         new Array('&pound;','&euro;' ,   '$');  //Currency Symbol to use
var UseVAT =                 new Array(        1,        1,     0);  //Decide if the VAT should be used(1) or not(0)
//-------------------------------------------------------
// Price Arrays
// Enter the Prices in the following Arrays
// Column 1 GBP £
// Column 2 Eur
//Columns 3 USD $
// var Item =                new Array (<GBP>,  <EUR>,  <USD>)
//------------------------------------------------------------
// P R I C E S
//------------------------------------------------------------
var PCP5000Price =           new Array(212.77, 240.00, 310.00);
var UpgradeToPCPPrice =      new Array(110.00, 125.00, 165.00);
var NavionicsChartXL3Price = new Array(161.70, 185.00, 250.00);
var EvermoreSA920Price =     new Array( 65.99,  75.00,  97.00);
var ComarAISMultiPrice =     new Array(240.00, 270.00, 370.00);
var ComarAIS2USBPrice =      new Array(195.00, 220.00, 325.00);
var ComarASR100Price =       new Array( 72.00,  85.00,  115.00);   //Tend to use the Multi instead
var PandPPrice =             new Array(  0.00,   0.00,   0.00);
var PandPRoWPrice =          new Array( 10.00,  12.00,  15.00);
//------------------------------------------------------------
// W E I G H T S (kg)
//------------------------------------------------------------
var UseWeights = 0;									//Set this to 1 if we are using weights
var WeightUnits = 'kgs';
var PCP5000Weight =           0.30;
var UpgradeToPCPWeight =      0.30;
var NavionicsChartXL3Weight = 0.15;
var EvermoreSA920Weight =     0.50;
var ComarAISMultiWeight =     0.70;
var ComarAIS2USBWeight =      0.50;
var ComarASR100Weight =       0.50;
// The following wont be shown if the Weights are being used instead
var PandPWeight =             0.00;  //If we are using weights we wont be using the P & P
var PandPRoWWeight =          0.00;  //
//------------------------------------------------------------
//==================================================================================================
//</script>
