/**
 * file:		showshifter-inventory.js
 * author:	John Niven, Berrie Bloem
 * created:	January 2004
 * Copyright (c) 2004 Channel 6 Multimedia - www.ch-6.co.uk
 *
 * Product descriptions:
 * Copyright (c) 2004-2005 Home Media Networks - www.showshifter.com
 */
 
/**
 * aryProducts format:
 *	code,name,description,price,used
 *		code = showshifter.com product ID
 *		name = display name
 *		description = display description
 *		price = price (in €)
 *		used = 0 (not used) ¦¦ 1 (used)
 */

var aryProducts = new Array(40);

/*
// euro prices
aryProducts[0] = '1358SS01,ShowShifter,ShowShifter,59.99,1';
aryProducts[1] = '1358SS02,ShowShifter Pro,ShowShifter Pro,74.99,1';
aryProducts[2] = '1358SS03,DivX Pro,Upgrade to DivXPro,19.99,1';
aryProducts[3] = '1358SS04,NOT USED,NOT USED,0.00,0';
aryProducts[4] = '1358SS05,NOT USED,NOT USED,0.00,0';
aryProducts[5] = '1358SS06,Upgrade ShowShfiter Version 1 to Version 2,Upgrade ShowShfiter Version 1 to Version 2,29.99,1';
aryProducts[6] = '1358SS07,ShowShifter + WinTV Go,ShowShifter + WinTV Go,??.??,1';
aryProducts[7] = '1358SS08,ShowShifter Pro + WinTV Go,ShowShifter Pro + WinTV Go,??.??,1';
aryProducts[8] = '1358SS09,PixelView TV Card (NOT USED),PixelView TV Card (NOT USED),0.00,0';
aryProducts[9] = '1358SS10,WinTV Go,WinTV Go,49.99,1';
aryProducts[10] = '1358SS11,ShowShifter + WinTV USB,ShowShifter + WinTV USB,??.??,1';
aryProducts[11] = '1358SS12,ShowShifter Pro + WinTV USB,ShowShifter Pro + WinTV USB,??.??,1';
aryProducts[12] = '1358SS13,WinTV USB,WinTV USB,69.99,1';
aryProducts[13] = '1358SS14,X10 Remote Control,X10 Remote Control,29.99,1';		
aryProducts[14] = '1358SS15,ShowShifter,ShowShifter,74.99,1';
aryProducts[15] = '1358SS16,ShowShifter DVB Pro (NOT USED),ShowShifter DVB Pro (NOT USED),0.00,0';
aryProducts[16] = '1358SS17,Upgrade ShowShifter Version 3 to DVB,Upgrade ShowShifter Version 3 to DVB,19.99,1';
aryProducts[17] = '1358SS18,Upgrade ShowShifter Version 2 to DVB,Upgrade ShowShifter Version 2 to DVB,29.99,1';
aryProducts[18] = '1358SS19,Upgrade ShowShifter Version 1 to DVB,Upgrade ShowShifter Version 1 to DVB,39.99,1';
aryProducts[19] = '1358SS20,Upgrade ShowShifter Version 2 to Version 3,Upgrade ShowShifter Version 2 to Version 3,29.99,1';
aryProducts[20] = '1358SS21,Upgrade ShowShifter Version 1 to Version 3,Upgrade ShowShifter Version 1 to Version 3,39.99,1';
aryProducts[21] = '1358SSOEM01,ShowShifter OEM (30% discount) - Manual payment can be used for this,ShowShifter OEM (30% discount) - Manual payment can be used for this,??.??,1';
aryProducts[22] = '1358SSOEM02,ShowShifter OEM (40% discount) - Manual payment can be used for this,ShowShifter OEM (40% discount) - Manual payment can be used for this,??.??,1';

// the following products (at least) need their prices checked:
aryProducts[24] = '1358SS22,WinTV Nova-t PCI,WinTV Nova-t PCI,89.99,1';		// ### placeholder price
aryProducts[25] = '1358SS23,WinTV Nova-t USB,WinTV Nova-t USB,119.99,1';		// ### placeholder price
aryProducts[26] = '1358SS34,WinTV Nova-s PCI,WinTV Nova-s PCI,119.99,1';		// ### placeholder price

 
aryProducts[29] = 'CD,ShowShifter on CD,Showshifter on CD,9.99,1';

aryProducts[30] = '1358SS32,ShowShifter DVB + X10 Remote Control,ShowShifter DVB + X10 Remote Control,79.99,1';	// bundle 1
aryProducts[31] = '1358SS31,VBox Digital TV Tuner Card + ShowShifter DVB,VBox Digital TV Tuner Card + ShowShifter DVB,99.99,1';	// bundle 2
aryProducts[32] = '1358SS25,ShowShifter + X10 Remote Control,ShowShifter + X10 Remote Control,79.99,1';
aryProducts[33] = '1358SS26,PC to TV Sender,PC to TV Sender,59.99,1';
aryProducts[34] = '1358SS28,ShowShifter DVB + WinTV Nova-t PCI,ShowShifter DVB + WinTV Nova-t PCI,139.99,1';
aryProducts[35] = '1358SS29,ShowShifter DVB + WinTV Nova-t USB,ShowShifter DVB + WinTV Nova-t USB,159.99,1';
aryProducts[36] = '1358SS30,ShowShifter DVB + WinTV Nova-s PCI,ShowShifter DVB + WinTV Nova-s PCI,139.99,1';
aryProducts[37] = '1358SS33,VBox Digital TV Tuner Card + X10 Remote Control,VBox Digital TV Tuner Card + X10 Remote Control,109.99,1';
aryProducts[38] = '1358SS24,Upgrade ShowShifter Version 1 to DVB (20% Discount) - Manual payment can be used for this,Upgrade ShowShifter Version 1 to DVB (20% Discount) - Manual payment can be used for this,43.99,1';
*/

// GBP prices
// 20050112 euro => pound: 0.70065 source www.ft.com
//   9.99 =>   6.99 =>   6.99
//  19.99 =>  14.01 =>  13.99
//  29.99 =>  21.01 =>  19.99
//  39.99 =>  28.02 =>  27.99
//  49.99 =>  35.03 =>  34.99
//  59.99 =>  42.03 =>  39.99
//  69.99 =>  49.04 =>  47.49
//  74.99 =>  52.54 =>  49.99
//  79.99 =>  56.04 =>  55.99
//  89.99 =>  63.05 =>  62.99
//  99.99 =>  70.06 =>  69.99
// 109.99 =>  77.06 =>  76.99
// 119.99 =>  84.07 =>  83.99
// 129.99 =>  91.08 =>  89.99
// 139.99 =>  98.08 =>  97.99
// 149.99 => 105.09 => 104.99
// 159.99 => 112.10 => 111.99
// 169.99 => 119.10 => 118.99
aryProducts[0] = '1358SS01,ShowShifter,ShowShifter,39.99,1'; // 59.99
aryProducts[1] = '1358SS02,ShowShifter Pro,ShowShifter Pro,69.99,1'; // 49.99 // 74.99
aryProducts[2] = '1358SS03,DivX Pro,Upgrade to DivXPro,1013.99,0'; // 19.99
aryProducts[3] = '1358SS04,NOT USED,NOT USED,1000.00,0';
aryProducts[4] = '1358SS05,NOT USED,NOT USED,1000.00,0';
aryProducts[5] = '1358SS06,Upgrade ShowShfiter Version 1 to Version 2,Upgrade ShowShfiter Version 1 to Version 2,19.99,1'; // 29.99
aryProducts[6] = '1358SS07,ShowShifter + WinTV Go,ShowShifter + WinTV Go,1000.00,0';
aryProducts[7] = '1358SS08,ShowShifter Pro + WinTV Go,ShowShifter Pro + WinTV Go,1000.00,0';
aryProducts[8] = '1358SS09,PixelView TV Card (NOT USED),PixelView TV Card (NOT USED),1000.00,0';
aryProducts[9] = '1358SS10,WinTV Go,WinTV Go,34.99,1'; // 49.99
aryProducts[10] = '1358SS11,ShowShifter + WinTV USB,ShowShifter + WinTV USB,1000.00,0';
aryProducts[11] = '1358SS12,ShowShifter Pro + WinTV USB,ShowShifter Pro + WinTV USB,1000.00,0';
aryProducts[12] = '1358SS13,WinTV USB,WinTV USB,47.49,1'; // 69.99
aryProducts[13] = '1358SS14,X10 Remote Control,X10 Remote Control,19.99,0'; // 29.99
aryProducts[14] = '1358SS15,ShowShifter,ShowShifter,29.99,1'; // 49.99 // 74.99
aryProducts[15] = '1358SS16,ShowShifter DVB Pro (NOT USED),ShowShifter DVB Pro (NOT USED),1000.00,0';
aryProducts[16] = '1358SS17,Upgrade ShowShifter Version 3 to DVB,Upgrade ShowShifter Version 3 to DVB,13.99,1'; // 19.99
aryProducts[17] = '1358SS18,Upgrade ShowShifter Version 2 to DVB,Upgrade ShowShifter Version 2 to DVB,19.99,1'; // 29.99
aryProducts[18] = '1358SS19,Upgrade ShowShifter Version 1 to DVB,Upgrade ShowShifter Version 1 to DVB,27.99,1'; // 39.99
aryProducts[19] = '1358SS20,Upgrade ShowShifter Version 2 to Version 3,Upgrade ShowShifter Version 2 to Version 3,19.99,1'; // 29.99
aryProducts[20] = '1358SS21,Upgrade ShowShifter Version 1 to Version 3,Upgrade ShowShifter Version 1 to Version 3,27.99,1'; // 39.99
aryProducts[21] = '1358SSOEM01,ShowShifter OEM (30% discount) - Manual payment can be used for this,ShowShifter OEM (30% discount) - Manual payment can be used for this,1000.00,1';
aryProducts[22] = '1358SSOEM02,ShowShifter OEM (40% discount) - Manual payment can be used for this,ShowShifter OEM (40% discount) - Manual payment can be used for this,1000.00,1';

// the following products (at least) need their prices checked:
aryProducts[24] = '1358SS22,WinTV Nova-t PCI,WinTV Nova-t PCI,1062.99,0';	// ### placeholder price //  89.99
aryProducts[25] = '1358SS23,WinTV Nova-t USB,WinTV Nova-t USB,83.99,1';	// ### placeholder price // 119.99
aryProducts[26] = '1358SS34,WinTV Nova-s PCI,WinTV Nova-s PCI,83.99,1';	// ### placeholder price // 119.99

 
aryProducts[29] = 'CD,ShowShifter on CD,Showshifter on CD,6.99,1'; // 9.99

aryProducts[30] = '1358SS32,ShowShifter DVB + X10 Remote Control,ShowShifter DVB + X10 Remote Control,55.99,0';	// bundle 1 // 79.99
aryProducts[31] = '1358SS31,VBox Digital TV Tuner Card + ShowShifter DVB,VBox Digital TV Tuner Card + ShowShifter DVB,69.99,1';	// bundle 2 // 99.99
aryProducts[32] = '1358SS25,ShowShifter + X10 Remote Control,ShowShifter + X10 Remote Control,55.99,0'; // 79.99
aryProducts[33] = '1358SS26,PC to TV Sender,PC to TV Sender,1059.99,0'; // 59.99
aryProducts[34] = '1358SS28,ShowShifter DVB + WinTV Nova-t PCI,ShowShifter DVB + WinTV Nova-t PCI,1079.99,0'; // 79.99
aryProducts[35] = '1358SS29,ShowShifter DVB + WinTV Nova-t USB,ShowShifter DVB + WinTV Nova-t USB,111.99,1'; // 159.99
aryProducts[36] = '1358SS30,ShowShifter DVB + WinTV Nova-s PCI,ShowShifter DVB + WinTV Nova-s PCI,97.99,1'; // 139.99
aryProducts[37] = '1358SS33,VBox Digital TV Tuner Card + X10 Remote Control,VBox Digital TV Tuner Card + X10 Remote Control,99.99,0'; // 109.99
aryProducts[38] = '1358SS24,Upgrade ShowShifter Version 1 to DVB (20% Discount) - Manual payment can be used for this,Upgrade ShowShifter Version 1 to DVB (20% Discount) - Manual payment can be used for this,1000.00,1'; // 43.99
// skipped to number 1358SS39 because it keeps it in line with this array
aryProducts[39] = '1358SS39,VBox Digital TV Tuner PCI Card,VBox Digital TV Tuner PCI Card,59.99,1';
aryProducts[40] = '1358SS40,ShowShifter DVB Medion Forum Offer,ShowShifter DVB Medion Forum Offer,26.99,1'; // http://medion.adslweb.co.uk August 2005
