var Photo_Frame_Array = new Array (
	'Zling_Seven'
)


var Modems_Array = new Array (
	'Zling_HCF',
	'Smart Spirit 56k',
	'Smart_Cobra_Lite_v6',
	'Smart_Cobra_Lite_v5',	'Smart_Cobra_Lite_v3',	'Smart Cobra Lite 56K',
	'USB ADSLa',
	'Raptor 56K',
	'Tomcat 56K',
	'Datamate 56K PCMCIA'
)

var ISDN_Array = new Array (
	'ISDN TA'
)

var Sound_cards_Array = new Array (
	'Nightingale Plus',
	'Nightingale Value',
	'Nightingale Pro 6',
	'Nightingale Pro 6 Lite'
)

var TV_cards_Array = new Array (
	'Genie Ultra',
	'Genie TV',
	'Genie Wonder Pro'
)

var Digital_cameras_Array = new Array (
	'Digi-X',
	'V-Go',
	'V-Go2',
	'PiXo5.5',
	'GrandPix',
	'Uni-Cam 3.1',
	'Uni-Cam 1.3',
	'Uni-Cam',
	'CopperCam',
	'Cute Cam',
	'Cyber Cam'
)

var VGA_cards_Array = new Array (
	'GeForce 2MX 400',
	'ATI Radeon VE'
)

var HD_controller_Cards_Array = new Array (
	'HellFire150',
	'Speedway 133+Raid'
)

var Memory_card_readers_Array = new Array (
	'FlashMExchange',
	'Memport'
)

var Network_cards_Array = new Array (
	'Just LAN',
	'Net Mate'
)

var Wireless_LAN_Array = new Array (
	'WirelessLAN AP Router',
	'WirelessLAN USB Adapter',
	'WirelessLAN PCMCIA'
)

var Accessaries_Array = new Array (
	'Wireless Keyboard',
	'Wireless Mouse'
)

var Others_Array = new Array (
	'Air Link',
	'Storage Go',
	'Storage Go 2',
	'Netscall'
)


var MP4_Players_Array = new Array (
	'Zling_i-Nax_v1_v2',
	'ZlingZazu',
	'ZlingZeni_V1_or_V2',	
	'ZlingTokuV2',
	'ZlingToku',	
	'ZlingT-NaX',
	'ZlingNaX',
        'ZlingZess_V1_or_V2',
 	'ZlingNiki_V2',
	'ZlingNiki',
	'ZlingNiko',
	'ZlingKarla',
	'ZlingV-PhotoVx',
	'ZlingV-Photo'
)

var MP3_Players_Array = new Array (
	'ZlingU2_V3',
	'ZlingU2 Pro FM',
	'ZlingU2FM',
	'ZlingU2 Pro V2 FM',
	'ZlingU2FM V2',
	'--------------',
	'ZlingClippy_V3',
	'ZlingClippy_V2',
	'ZlingClippy',
	'--------------',
	'ZlingSlotFx_V3',
	'ZlingSlot Fx Pro',
	'ZlingSlot Fx',
	'ZlingSlot Fx Pro V2',
	'ZlingSlot Fx V2',
	'ZlingSlotPro',
	'ZlingSlot',
	'--------------',
	'MacerV5',
	'MacerV3',
	'Macer',
	'ZlingICY Pro',
	'ZlingICY',
	'ZlingICE',
	'ZlingSDFMV3',
	'ZlingSDFMV2',
	'ZlingSDFM',
	'Torpedo',
	'TorpedoII',
	'TorpedoII_V2',
	'TorpedoII_V3',
	'Mirro',
	'BoomN',
	'BoomN_Pro',
	'BoomN_Pro_V2',
	'BoomN_Pro_V3'	
)

var PMP_Array = new Array (
	'ZlingStudio',
	'Zling Eva Eye',
	'ZlingEva',
	'ZlingGrammy'
	
)


var USB_Drives_Array = new Array (
	'U-Stik-A',
	'U-Pod',
	'U-Stik',
	'Swirl',
	'Swirl V2',
	'Q-StikV2',
	'Q-Stik',
	'ProtonStick',
	'ProtonStick_V2',
	'ProtonStick_2.0',
	'Memtouch',
	'Memtouch_V2',
	'Memtouch_V3',
	'Cool Disk',
	'Cool Disk_V2',
	'Cool Disk_V3',
	'Cool Disk_2.0',
	'Cool Disk_2.0_V2'	
)

var HD_Storage_Array = new Array (
	'Zling Photo Wallet LC',
	'Zling Photo Wallet',
	'Zling Drive 1_2GB',
	'Zling_Drive_5GB',
	'Zling Drive 15_20GB',
	'i Drive 15_20GB',
	'i Drive 2GB',
	'i Drive 1.5GB'
	
)

var NoProductType_String =  "Please choose a product type"
var NoProductList_String =  "No product available of this type"

function changeProductList ( productType, productList ) {
	if (productList) {
		productList.length = 0
		if (productType) {
			var productArray = eval(productType + '_Array')
			if (productArray.length) {
				for (i=0;i<productArray.length;i++) {
					productList.options[i] = new Option (productArray[i], productArray[i]+'.htm', false, false)
				}
			}
			else {
					productList.options[0] = new Option(NoProductList_String, null, true, true)
			}
		}
		else {
				productList.options[0] = new Option(NoProductType_String, null, true, true)
		}
	}
}
