	//setup the array of Barbados scenes
	photos = new Array();
	numPhotos = 4;
	
	for (var i=0; i<numPhotos; i++){
		phototemp = new Array();
		phototemp['title'] = '';
		phototemp['source'] = '';
		
		photos[i] = phototemp;	
	}	
	
	photos[0].title = 'Bridgetown - capital city of Barbados';
	photos[0].source = 'images/large/bridgetown.jpg';
	photos[0].width = 400;
	photos[0].height = 300;
	
	photos[1].title = 'Palm Trees in Paradise';
	photos[1].source = 'images/large/palmtrees.jpg';
	photos[1].width = 400;
	photos[1].height = 300;
	
	photos[2].title = 'Beach at Walmer Lodge';
	photos[2].source = 'images/large/barbados-beach.jpg';
	photos[2].width = 240;
	photos[2].height = 160;
	
	photos[3].title = 'Tropical Splendour';
	photos[3].source = 'images/large/tropicalsplendour.jpg';
	photos[3].width = 400;
	photos[3].height = 326;
       
	function showWindow(photoIndex){
					
		winTitle = photos[photoIndex].title;
		winContent = '<img src="' + photos[photoIndex].source + '">';
		winWidth = photos[photoIndex].width + 4; //add extra for border around picture
		winHeight = photos[photoIndex].height;
		
		winParam = 'width=' + winWidth + 'px,height=' + winHeight + 'px,left=150px,top=50px,resize=0,scrolling=0,center=0';
	
		dhtmlwindow.open("winPhoto", "inline", winContent, winTitle, winParam, "recal");
	}
