//************************************************************************************************* 
// Design           	: FvdM Design Studio's 2006-2008
// Initial file date	: 31 August, 2006
// Function(s)			: Variable definition of Photo array
//						  Photo array functions
// Change history		:	Date		By		Revision	Description
//							31-08-2006	FvdM	1.0			Initial version for Southern Africa
//															website
//							04-10-2006	FvdM	1.1			Global routine added which will set the default
//															dimensions of a photo in an array. These
//															dimensions are needed for scaling the photo
//															in the viewer.
//															The implemented solution is done because
//															reading the 'width' and 'height' properties
//															of an image is not reliable (different values;
//															sometimes zero, which leads to an 'invisible'
//															photo.).
//*************************************************************************************************


//***********************************************************************************************//
//  IT IS IMPORTANT THAT ALL PHOTO'S HAVE THE SAME WIDTH (var PWidth) AND HEIGHT (var PHeight)   //
//              SETTINGS, FOR A CORRECT FUNCTIONING OF THE SCALING ROUTINE!!                     //
//***********************************************************************************************//

//Initialisation of variables
F					=	"Frank v.d. Meerendonk";
I					=	"Ineke Henderson";
FI					=	"Identify Photographer";

H					= 	"Hor";
V					=	"Ver";
PWidth				=	800;									// Based on horizontal photo.
PHeight				=	591;									// Based on horizontal photo.

FirstPhotoNumber	=	  1;
LastPhotoNumber		=	100;
Cntr				=	  0;

//Array declarations
var PhotoSource		= new Array(LastPhotoNumber + 1);
var Orientation		= new Array(LastPhotoNumber + 1);
var PhotoText		= new Array(LastPhotoNumber + 1);
var PhotoSubscript	= new Array(LastPhotoNumber + 1);
var Photographer	= new Array(LastPhotoNumber + 1);
var PhotoWidth		= new Array(LastPhotoNumber + 1);
var PhotoHeight		= new Array(LastPhotoNumber + 1);


//Array content definitions
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_I009.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Livingstone: Op bezoek bij een lokaal schoolproject...";
PhotoSubscript[Cntr]= "Apetrots met ons bezoek";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_I016.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Livingstone: Allerlei 'lekkernijen' op de plaatselijke markt";
PhotoSubscript[Cntr]= "Kruiden en delicatesses";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_I012.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Livingstone: Verandering van spijs, hmm, toch maar niet";
PhotoSubscript[Cntr]= "Heerlijke geroosterde wormen";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_I031.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kasane: Een van de weinige Baobabs hier";
PhotoSubscript[Cntr]= "Een kleine Baobab-boom";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_012.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kazungula: Wachten op het pontje naar Botswana";
PhotoSubscript[Cntr]= "Kleurrijke taferelen bij de grensovergang";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_I036.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Caprivi strip: Dit is het echte vakmanschap";
PhotoSubscript[Cntr]= "Afrikaanse Formule 1";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_021.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Genieten van het zojuist bemachtigde nootje";
PhotoSubscript[Cntr]= "Eekhoorntjes in overvloed";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_I029.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Je kon 'm bijna aaien op het grasveldje";
PhotoSubscript[Cntr]= "Een oerlelijk wrattenzwijn";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_031.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Waar zo'n slurf al niet goed voor is";
PhotoSubscript[Cntr]= "Badende olifant in de Chobe rivier";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_I015.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Lange rijen met badende olifanten";
PhotoSubscript[Cntr]= "Kop en staart";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_034.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Chobe NP: Lekker wachten tot alles weer droog is";
PhotoSubscript[Cntr]= "Zonnende slangehals-vogel";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_036.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: We komen gevaarlijk dichtbij met ons bootje";
PhotoSubscript[Cntr]= "Krokodillen wachten op hun kans";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_039.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: We blijven op gepaste afstand";
PhotoSubscript[Cntr]= "Buffels grazen in het moeras";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_042.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Verscholen tussen het hoge gras worden ze toch gespot";
PhotoSubscript[Cntr]= "Groepje 'Yellow billed' ooievaars";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_048.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Waakzaam voor een overijverige krokodil";
PhotoSubscript[Cntr]= "Een dorstige impala neemt een slokje";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_052.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: De eerste game-drive begint meteen goed";
PhotoSubscript[Cntr]= "De leeuwen worden wakker";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_056.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Nu worden wij opgemerkt";
PhotoSubscript[Cntr]= "Impala's tussen het hoge gras";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_062.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Wachten op een volgend vismaaltje";
PhotoSubscript[Cntr]= "Turende 'Pied Kingfisher'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_063.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Daar deel je rake klappen mee uit";
PhotoSubscript[Cntr]= "Buffels staren ons na";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_065.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Iedereen wacht op deze pose";
PhotoSubscript[Cntr]= "Knorrende Hippo's om ons heen";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C1_066.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: De 'Yellow billed' ooievaar zoekt zijn voedsel";
PhotoSubscript[Cntr]= "Eventjes alleen op pad";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_001.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Chobe NP: Vooral de jonkies willen spelen";
PhotoSubscript[Cntr]= "Een groepje ravottende olifanten";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_I009.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Sepupa: Wiebelig en erg dicht bij de krokodillen";
PhotoSubscript[Cntr]= "Een trip met Mokoro's";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_I012.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Okavango Delta: Net iets te vroeg voor de grote aantallen";
PhotoSubscript[Cntr]= "E&eacute;n van de weinige waterlelies";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_017.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Okavango Delta: Wat een enorme kracht stralen deze vogels uit";
PhotoSubscript[Cntr]= "Een visarend rust even uit";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_020.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Okavango Delta: Eventjes uitrusten, en dan een volgend visje";
PhotoSubscript[Cntr]= "De 'Malichite Kingfisher'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_024.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Okavango Delta: We hebben geluk, ook de grote ijsvogel laat zich zien";
PhotoSubscript[Cntr]= "Twee aktieve 'Giant Kingfishers'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_029.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Okavango Delta: Verstopt tussen de bomen, maar toch ontdekt";
PhotoSubscript[Cntr]= "De 'Little Bea-eater'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_I033.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Okavango Delta: We werden echt helemaal volgescheten";
PhotoSubscript[Cntr]= "Slapende fruit-vleermuizen";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_I019.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Rennen naar het waterpoeltje";
PhotoSubscript[Cntr]= "Zo blij als een 'olifant'";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_058.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Etosha NP: Heel elegant en altijd in beweging";
PhotoSubscript[Cntr]= "Een poserende gazelle";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_060.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Geen probleem om dat ene besje te bemachtigen";
PhotoSubscript[Cntr]= "De 'gewone' giraf";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C2_061.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Afzonderen brengt een zeker risico met zich mee";
PhotoSubscript[Cntr]= "Starend naar de grote groep";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_003.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Langzaam maken de reigers plaats voor deze reus";
PhotoSubscript[Cntr]= "Weer zo'n lekker poeltje";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_012.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Etosha NP: Als hun benen maar niet in de knoop raken";
PhotoSubscript[Cntr]= "Twee rennende giraffes";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_017.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: De olifanten veroorzaken grote stofwolken";
PhotoSubscript[Cntr]= "Bijna struikelend";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_025.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Eerlijk zullen we alles delen";
PhotoSubscript[Cntr]= "Gebroederlijk naast elkaar";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_028.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Gewoon mooi van lelijkheid";
PhotoSubscript[Cntr]= "Een gnoe zoekt het verse gras";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_031.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Lekker grazen met een oplettende buurvrouw";
PhotoSubscript[Cntr]= "Altijd oplettend";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_043.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Een typisch tafereel op de Etosha-vlakten";
PhotoSubscript[Cntr]= "E&eacute;nzaam en alleen";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_044.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Verstoppertje spelen in het hoge gras";
PhotoSubscript[Cntr]= "Thomson gazelles 'lined up'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_045.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Hoog in de boom zijn ze gemakkelijk te herkennen";
PhotoSubscript[Cntr]= "Een 'Pale Chanting Goshawk'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_047.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: De typische oren van een waterbok";
PhotoSubscript[Cntr]= "Big ears";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_055.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Er heerst een strikte rangorde tijdens het drinken";
PhotoSubscript[Cntr]= "Het Hartebeest wacht op zijn beurt";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_058.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Etosha NP: Mooier hadden ze niet voor me kunnen staan";
PhotoSubscript[Cntr]= "Crossing necks";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C3_066.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Even wachten tot de rest is gearriveerd";
PhotoSubscript[Cntr]= "Moeder en dochter";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_I027.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Etosha NP: Met z'n vijven wachtend op vlees";
PhotoSubscript[Cntr]= "Jakhalsen rond de braai";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_005.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Etosha NP: Hans bouwde een mooie relatie met ze op";
PhotoSubscript[Cntr]= "Altijd nieuwsgierige grond-eekhoorns";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_007.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Nietsvermoedend grazen ze verder";
PhotoSubscript[Cntr]= "Black and White stripes";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_011.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Etosha NP: Verbaasd wordt even gekeken wat die fotograaf daar doet";
PhotoSubscript[Cntr]= "Fier in de wind";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_015.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Etosha NP: Met velen te zien in het park";
PhotoSubscript[Cntr]= "De grote Trap";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_022.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Twijfelfontein: Ze riepen nog net geen 'miep miep'";
PhotoSubscript[Cntr]= "Supersnelle 'Darkling' kevers";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_027.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Twijfelfontein: Het kostte wat moeite, maar dan heb je ook wat";
PhotoSubscript[Cntr]= "Een 'African orange-tailed Agame' hagedis";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_056.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Uis: Tijdens een stop langs de kant van de weg";
PhotoSubscript[Cntr]= "Poppetjes op een rij";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_062.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Cape Cross: Het ging allemaal langs onze pelsrob heen";
PhotoSubscript[Cntr]= "Hangend in de lucht";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C4_070.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Cape Cross: Heerlijk genietend van het opkomende zonnetje";
PhotoSubscript[Cntr]= "Drogen op het strand";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_002.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Cape Cross: Altijd op zoek naar restjes eten";
PhotoSubscript[Cntr]= "Lastige meeuwen";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_011.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Cape Cross: Eindelijk, net op het juiste moment genomen";
PhotoSubscript[Cntr]= "Poging 116";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_017.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Cape Cross: Een schoon plekje is hier niet te vinden";
PhotoSubscript[Cntr]= "De 'Great Cormorant'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_I024.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Walvis Bay: Tijdens de dolphin tour langs de boot";
PhotoSubscript[Cntr]= "Prachtig gekleurde 'Great white' pelikanen...";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_I036.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Walvis Bay: Mooi oplichtend in het heldere water";
PhotoSubscript[Cntr]= "Doorzichtig rode kwal";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_I026.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Khorixas: Onderweg naar 'Petrified Forest'";
PhotoSubscript[Cntr]= "Een vrolijke Namib&iuml;er";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_I002.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Outjo: Typische klederdrachten in dit dorp";
PhotoSubscript[Cntr]= "Trots poserend in haar mooie jurk";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_027.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Swakopmund: Overleven in de 'waiting area'";
PhotoSubscript[Cntr]= "Township woningen";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_030.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Swakopmund: Een heel apart persoon om te ontmoeten"
PhotoSubscript[Cntr]= "Hoop en Liefde";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_036.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Walvis Bay: En steeds iets dichterbij proberen te komen";
PhotoSubscript[Cntr]= "Opvliegende flamingo's";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_I004.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Uis: Echt eentje om in te lijsten";
PhotoSubscript[Cntr]= "E&eacute;ntje om nooit te vergeten";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_043.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Solitaire: Een prachtig schouwspel vanaf ons balkon";
PhotoSubscript[Cntr]= "Zonsondergang in de woestijn";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C5_048.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Sossusvlei: Helaas nog geen naam van kunnen vinden";
PhotoSubscript[Cntr]= "Een kevertje in de Vlei";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_002.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Sossusvlei: Bushman Frans leert ons overleven in de woestijn";
PhotoSubscript[Cntr]= "Frans geeft les";
Photographer[Cntr]	= F;
//Cntr++;
//PhotoSource[Cntr]	= "Photos/Large Photos/C6_013.jpg";
//Orientation[Cntr]	= V;
//PhotoText[Cntr]		= "Sossusvlei: Eventjes uitrusten na een wandeling";
//PhotoSubscript[Cntr]= "Lekker stuk";
//Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_026.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Sossusvlei: Uitzicht tijdens onze vlucht boven de Vlei";
PhotoSubscript[Cntr]= "Glooiende heuvels";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C8_I008.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Solitaire: Moose was er helaas niet, z'n appeltaartjes gelukkig wel";
PhotoSubscript[Cntr]= "De oude benzinepomp van Solitaire";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_032.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Maltahohe: Opvangcentrum voor gewone en gestrande dieren";
PhotoSubscript[Cntr]= "Het gekoesterde Luipaard";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_033.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Maltahohe: De mascotte van 'Hammerstein Lodge'";
PhotoSubscript[Cntr]= "Een Caracal luistert aandachtig";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C8_I009.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Bossiesvlei: Vele meters lang en hoog";
PhotoSubscript[Cntr]= "Nesten van de 'Community Weavers'";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_035.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Fish River Canyon: Echt de moeite waard om goed te bekijken";
PhotoSubscript[Cntr]= "Een echte Kokerboom";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_052.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Fish River Canyon: 'Canon Village lodge' heeft een schitterende tuin";
PhotoSubscript[Cntr]= "Geel-oranje bloemenveld";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_057.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Oranje Rivier: Je behelpen met de weinige dingen die je hebt";
PhotoSubscript[Cntr]= "Het dagelijkse leven";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_059.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Oranje Rivier: Een van de trotse township bewoners";
PhotoSubscript[Cntr]= "Winter in Afrika";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_064.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Oranje Rivier: In tien minuten trok het schouwspel aan ons voorbij";
PhotoSubscript[Cntr]= "Prachtig mooie kleuren";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_070.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Bitterfontein: Heel veel bloemen tijdens deze rit";
PhotoSubscript[Cntr]= "Afrikaanse bloemenvelden";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C6_075.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Lambert's Bay: De Jan van Genten laten zich gewoon uit de lucht vallen";
PhotoSubscript[Cntr]= "Met vallen en opstaan";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_001.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Lambert's Bay: We hadden erg veel geluk dat ze er weer waren";
PhotoSubscript[Cntr]= "Baltsende Jan van Genten"
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_010.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kaapstad: Een aanrader, het 'Two Oceans' museum";
PhotoSubscript[Cntr]= "Zo uit 'Nemo'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_012.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kaapstad: Alle aquaria waren fantastisch van kleurstelling";
PhotoSubscript[Cntr]= "De gevaarlijke Duivelsvis";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_019.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kaapstad: We misten alleen het begeleidende muziekje";
PhotoSubscript[Cntr]= "Dansende Zeepaardjes";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C9_I029.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Kaapstad: Een echt neurootje";
PhotoSubscript[Cntr]= "Geelkuif-pinguin in het Two Oceans museum";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_032.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Boulders NP: Leuk park, maar niet iets voor een hele dag";
PhotoSubscript[Cntr]= "De Afrikaanse pinguin";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_031.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Boulders NP: Gaan we nou of gaan we nu niet";
PhotoSubscript[Cntr]= "Pinguins op het strand";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_034.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Boulders NP: Tijdens onze rit naar Kaap de Goede Hoop";
PhotoSubscript[Cntr]= "De Protea, Afrika's nationale bloem";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C10_I009.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kaap de Goede Hoop: Helemaal uit het niets verschenen";
PhotoSubscript[Cntr]= "Eindelijk een Klipdassie";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_038.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Kaap de Goede Hoop: Een beetje extra licht is geen overbodige luxe";
PhotoSubscript[Cntr]= "Licht in de duisternis";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C10_I010.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kaap de Goede Hoop: De grote golven trotserend";
PhotoSubscript[Cntr]= "Het meest zuidelijke Afrikaanse gedeelte";
Photographer[Cntr]	= I;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_044.jpg";
Orientation[Cntr]	= H;
PhotoText[Cntr]		= "Kaapstad: Slechte rondleiding, maar de meesten gingen voor de proeverij";
PhotoSubscript[Cntr]= "Wijnboerderij 'Groot Constantia'";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_052.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Robben eiland: Niks geen luxe hier";
PhotoSubscript[Cntr]= "Nelson Mandela's cellenblok";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_059.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Robben eiland: Vriendelijke entree, maar schijn bedriegt";
PhotoSubscript[Cntr]= "Bye bye vrijheid";
Photographer[Cntr]	= F;
Cntr++;
PhotoSource[Cntr]	= "Photos/Large Photos/C7_064.jpg";
Orientation[Cntr]	= V;
PhotoText[Cntr]		= "Kaapstad: Volop werk in de havens van het Waterfront";
PhotoSubscript[Cntr]= "Bedrijvigheid aan het Waterfront";
Photographer[Cntr]	= F;
LastPhotoNumber		=  Cntr;

//Global function; will be executed immediately after script startup!!
//Function is used to set the default dimensions of the photos.
for (DimCntr = 1; DimCntr <= LastPhotoNumber; DimCntr++)	{
	if (Orientation[DimCntr] == H) {
	PhotoWidth[DimCntr] = PWidth;
	PhotoHeight[DimCntr]= PHeight;
		}
	else{
	PhotoWidth[DimCntr] = PHeight;
	PhotoHeight[DimCntr]= PWidth;
	}
}

