//Lincoln: Here 2 new functions that will write the 
// View cart link and the Index Side Menu

function showCart(){/*Include <script>showCart();</script> in your pages where you want the View Cart link to appear*/
document.write('<a href="'+cartPage+'"><img src="images/Basket.jpg" width="30"height="25"border="0"><font face="Arial, Helvetica, sans-serif" size="2"><font color="lightgrey"><u>View Cart</u></font></font></a>')
}

	
function showIndexMenu(){ /*Include <script>showIndexMenu();</script> in your pages where you want the following index to appear*/
	indexTable = '<table width="120" bgcolor="#FF9900" border="2" bordercolor="#336699" cellpadding="1" cellspacing="0" style="font-family:Arial, Helvetica, sans-serif; font-size:13px;">'+
'	<tr> <td style="color:white; font-size:13px; font-weight:bold">A to Z of Products</td></tr>';
				Index = new Array(                         /*Syntax = href|Text*/
    
    "Accessories.htm|Accessories",
    "Electrical-Accessories.htm|Elec Accessories",
    "Security.htm#Air|Airline Tote Bag",
    "Securitypersonal.htm|Alarms",
    "Hygiene.htm#Wipes|Antiseptic Wipes",
    "Bikes.htm|Bike in a Bag ",
    "Binoculars.htm|Binoculars ",
    "Travel-Books.htm|Books (Travel)",
    "Outdoor.htm|Boots",
	"Pacsafe_BuckleSafe.htm|Bucklesafe",
    "Security.htm#cable|Cable Locks",
    "Insect-Repellent.htm#Bite|Click don't Scratch",
    "Climbing_Gear.htm|Climbing Gear",
    "Clothes.htm|Clothes",
    "Navigation.htm|Compasses",
    "Accessories.htm#Comp|Compression Sacks",
    "Stoves.htm|Cooking Stoves",
    "Crampons.htm|Crampons",
    "Rucksacks.htm|Day Sacks",
    "Travel-Health.htm#Dental|Dental Kit",
    "Securityroom.htm|Door Guard",
    "Waterproof_Pouches.htm#Dry|Dry Bags",
    "Accessories.htm|Ear Plugs",
    "Electrical-Accessories.htm|Elec Accessories",
    "Travel-Health.htm|First Aid Kits",
    "Fleeces.htm|Fleeces",
    "Gloves.htm|Gloves",
    "Hats.htm|Hats",
    "Torches.htm|Head Torches",
    "Hydration.htm|Hydration System",
    "Insect-Repellent.htm|Insect Repellent",
    "Knives.htm|Knives",
	"Lingo_Pix.htm|Lingo Pix",
    "Liquid_ice.htm|Liquid ice",
    "Accessories.htm#Tag|Luggage Label/Tag",
    "Accessories.htm#Strap|Luggage Strap",
    "Waterproof_Jackets.htm#Mac|Mac in A Sac",
    "Securitymoney.htm#Moneybelts|Money Belts",
    "Mosquito-Nets.htm|Mosquito Nets",
    "Outdoor.htm|Outdoor Gear",
    "Accessories.htm#Pack|Pack-Mate",
    "Security.htm#Pacsafe|Pacsafe",
    "Security.htm#Pad|Padlocks",
    "Accessories.htm#Travel|Pillows Travel",
    "Electrical-Accessories.htm|Radio\'s (SW)",
    "Rucksacks.htm|Rucksacks",
    "Security.htm|Rucksack Security",
    "Securitymoney.htm|Safes",
    "Security.htm#Air|Sakbags",
    "Security.htm|Saklocks",
    "Teva_Sandles.htm|Sandals",
    "Accessories.htm#Sew|Sewing Kits",
    "Hygiene.htm#Shewee|Shewee",
    "Sleeping.htm|Sleeping Bags",
    "Sleeping-Mats.htm|Sleeping Mats",
    "Sleeping-Sheets.htm|Sleeping Sheets liners",
    "Securitypersonal.htm#Smoke|Smoke Alarm",
    "Hygiene.htm|Soap",
    "Sunglasses.htm|Sunglasses",
    "Electrical-Accessories.htm#Charger|Solar Charger",
    "Hygiene.htm#Solar|Solar Shower",
    "Travel-Health.htm#Sterile|Sterile Kits",
    "HealthWater.htm|Steripen",
    "Accessories.htm#Stuff|Stuff Sacks",
    "Sunblocks.htm|Sun creams",
    "Travel-Health.htm|Survival Kits",
    "Tents.htm|Tents",
    "Fleeces.htm|Thermals",
    "Torches.htm|Torches",
    "Electrical-Accessories.htm#Adaptor|Travel Adapter",
    "Accessories.htm#Alarms|Travel Clocks",
    "Backpacker-Travel-Games.htm|Travel Games",
    "Electrical-Accessories.htm#Adaptor|Travel Iron",
    "Accessories.htm|Travel Pillow",
    "Electrical-Accessories.htm#Speakers|Travel Speakers",
    "Hygiene.htm|Travel Towel",
    "Hygiene.htm#Wash|Travel Wash",
    "Securitymoney.htm|Travel Safe",
    "Trekking_Poles.htm|Trekking Poles ",
    "Electrical-Accessories.htm#Adaptor|USB Charger",
    "Watches.htm|Watches",
    "HealthWater.htm|Water purification",
    "Waterproof_Jackets.htm|Waterproof Jackets",
    "Waterproof_Pouches.htm|Waterproof Pouches",
    "Waterproof-Trousers.htm|Waterproof Trousers"
				)
				for (i in Index){
					line = Index[i].split('|');
					href = line[0]; txt = line[1];
				indexTable += '	<tr> <td><a href="'+href+'">'+txt+'</a></td></tr>\n';
				}
				
indexTable += '	</table>';
	return document.write(indexTable);
	
	}