// JavaScript Document<!--	var SetPageNumCols;	var SetPageTxtLocn;	var SetPageTxtSpace;	var SetPageTxtValign;	var SetPageTxtStyle;	var SetPageRowSpace;	var gWidth;	var gHeight;	var gAlign;	var gVAlign;	var theParagraph;		// ----------------	// BUILD STATEMENTS	// ----------------	// Edit the elements below to update the pages.	// Be careful to follow the instructions!			// HOME PAGE ---------------------------		SetPageNumCols	= 1;			// number of columns of images	SetPageTxtLocn	= kTextBelow;	// kTextRight puts text to the right,									// kTextBelow puts text below	SetPageTxtSpace	= 20;			// if kTextRight, this is width in									// pixels for columns where text									// labels go									// if kTextBelow, this is height									// in pixels for rows where text									// labels go	SetPageTxtValign = "bottom";	// vertical alignment of text									// in its cell	SetPageTxtStyle = "style10pt";  // style (css) for text									// used to set text size:									// "style10pt", "style12pt",									// "style16pt"	SetPageRowSpace = 40;			// spacing between rows of image									// cells on the page		setLayout(kPgname_Home, SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign, SetPageTxtStyle,			  SetPageRowSpace);	// To make things easier, establish constants that can be used	// instead of numbers.  Leads to less errors, and allows things to	// be changed in one place...	 	gWidth 		= 220;				// used to set the image cell width	gHeight 	= 180;				// used to set the image cell height	gAlign 		= "left";			// used to set the image horz alignment	gVAlign 	= "middle";			// used to set the image vert alignment		// Add header items to the page.  That is, a title and/or	// descriptive paragraphs (or blank space).		addHeadItem(kPgname_Home, "blankspace", "", 120);	// Here is where you can put additional space *before* each	// column of items.  You should have one line here for every column,	// even if the space is zero.   (That is, you should have the same	// number of these here as the value of SetPageNumCols, above.)	addColSpace(kPgname_Home, 120);	// Here's where you define each item...	// (Note that you can have empty items in a column.)  	addItem(kPgname_Home, "", 0, 0,			"home07.jpg", 385, 316, gAlign, gVAlign,			"", "");	// WORK MENU PAGE -------------------------------------------------------------------------------		// First, set the layout for the work menu page:			var SetMenuNumCols	= 3;			// number of columns of images										// (thumbs for categories)	var SetMenuTxtLocn 	= kTextBelow;	// kTextRight puts text to the right,										// kTextBelow puts text below	var SetMenuTxtSpace	= 40;			// if kTextRight, this is width in										// pixels for columns where text										// labels go										// if kTextBelow, this is height in										// pixels for rows where text										// labels go	var SetMenuTxtValign = "top";		// vertical alignment of text										// in its cell	var SetMenuTxtStyle = "style10pt";  // style (css) for text,										// used to set text size:										// "style10pt", "style12pt",										// "style16pt"	var SetMenuRowSpace = 25;			// spacing between rows of image										// cells on the page	setWorkmenuLayout(SetMenuNumCols, SetMenuTxtLocn,					  SetMenuTxtSpace, SetMenuTxtValign, SetMenuTxtStyle,					  SetMenuRowSpace);	// Add header items to the page.  That is, a title and/or	// descriptive paragraphs (or blank space).	addWorkmenuHeadItem("blankspace", " ", 110);	// Here is where you can put additional space *before* each	// column of items.  You should have one line here for every column,	// even if the space is zero.   (That is, you should have the same	// number of these here as the value of SetPageNumCols, above.)	addWorkmenuColSpace(70);	addWorkmenuColSpace(17);	addWorkmenuColSpace(17);	// Set up the categories for the work menu page:	//	// One "addItem" line for each category.  The variables are:		//		(1)		Name of image file (thumbnail) to represent	//				category	//		(2)		Width of the cells (column) for images	//				(usually should be same for all)	//		(3)		Height of the cells (rows) for images	//				(usually should be same for all)	//		(4)		Left-right alignment within cell:	//				"left", "center", "right"	//		(5)		Up-down alignment within cell:	//				"top", "middle", "bottom"	//		(6)		Text label.  Appears with the thumbnail.	//				Can be multiple lines by adding <br> between	//				text for each line.	//		(7)		Page name.  Internal name for the page to go	//				to when this thumbnail is clicked.  This is	//				the page name used below when adding items	//				to each page.		// To make things easier, establish constants that can be used	// instead of numbers.  Leads to less errors, and allows things to	// be changed in one place...	 	gWidth 		= 150;				// used to set the image cell width	gHeight 	= 110;				// used to set the image cell height	gAlign 		= "center";			// used to set the horz alignment	gVAlign 	= "middle";			// used to set the vert alignment		// Here's where you define each item, or category, for the menu page:	addWorkmenuItem("2008thum100x83.jpg", gWidth, 100,					gAlign, gVAlign, "<br>2008", "2008")	addWorkmenuItem("2007thum100x83.jpg", gWidth, 100,					gAlign, gVAlign, "<br>2007", "2007");	addWorkmenuItem("2006thum100x72.jpg", gWidth, 100,					gAlign, gVAlign, "<br>2006", "2006");	addWorkmenuItem("2005_thumb.jpg", gWidth, 100,					gAlign, gVAlign, "<br>2005", "2005");	addWorkmenuItem("2004_thumb.jpg", gWidth, 100,					gAlign, gVAlign, "<br>2004", "2004");	addWorkmenuItem("2002_thumb.jpg", gWidth, 100,					gAlign, gVAlign, "<br>2002/03", "2002/03");	addWorkmenuItem("2000_thumb.jpg", gWidth, gHeight,					gAlign, gVAlign, "<br>2000/01", "2000/01");	addWorkmenuItem("living_thumb.jpg", gWidth, gHeight,					gAlign, gVAlign, "<br>living room project", "living");			// TEXT MENU PAGE -------------------------------------------------------------------------------		// As above for the work menu page, this defines the text menu page.	// First, set the general layout parameters:		var SetTMenuNumCols	= 2;			// number of columns of images										// (thumbs for categories)	var SetTMenuTxtLocn = kTextRight;	// kTextRight puts text to the right,										// kTextBelow puts text below	var SetTMenuTxtSpace= 300;			// if kTextRight, this is width in										// pixels for columns where text										// labels go										// if kTextBelow, this is height in										// pixels for rows where text										// labels go	var SetTMenuTxtValign = "middle";	// vertical alignment of text										// in its cell	var SetTMenuTxtStyle = "style12pt";  // style (css) for text,										// used to set text size:										// "style10pt", "style12pt",										// "style16pt"	var SetTMenuRowSpace = 20;			// spacing between rows of image										// cells on the page	setTextmenuLayout(SetTMenuNumCols, SetTMenuTxtLocn,					  SetTMenuTxtSpace, SetTMenuTxtValign,					  SetTMenuTxtStyle, SetTMenuRowSpace);	addTextmenuHeadItem("blankspace", " ", 180);	addTextmenuColSpace(90);	addTextmenuColSpace(0);	// Again, global variables to make things easier:	 	gWidth 		= 50;				// used to set the image cell width	gHeight 	= 31;				// used to set the image cell height	gAlign 		= "left";			// used to set the image horz alignment	gVAlign 	= "middle";			// used to set the image vert alignment	// Define each item on the page...		addTextmenuItem("en_doc.jpg", gWidth, gHeight, gAlign, gVAlign,					"Marian Wijnvoord, 2007",					"2007en.htm"); addTextmenuItem("fr_doc.jpg", gWidth, gHeight, gAlign, gVAlign,					"Anne Malherbe, 2005",					"2005bfr.htm");	addTextmenuItem("en_doc.jpg", gWidth, gHeight, gAlign, gVAlign,					"Jean-Marc Stricker, 2005",					"2005en.htm"); 	addTextmenuItem("fr_doc.jpg", gWidth, gHeight, gAlign, gVAlign,					"Jean-Marc Stricker, 2005",					"2005fr.htm");	addTextmenuItem("fr_doc.jpg", gWidth, gHeight, gAlign, gVAlign,					"Rozenn le Corre, 2003",					"2003fr.htm");	addTextmenuItem("en_doc.jpg", gWidth, gHeight, gAlign, gVAlign,					"Louise Crawford, 2001",					"2001en.htm"); 	addTextmenuItem("fr_doc.jpg", gWidth, gHeight, gAlign, gVAlign,					"Louise Crawford, 2001",					"2001fr.htm");			// INDIVIDUAL WORK PAGES ------------------------------------	// Next, set up each work page:	//	// One "addItem" line for each image.  Variables are:		//		(1)		Page name.  One word.  This is internal; the user	//				never sees this.  Must be the same for all items on	//				the page.  Then, use the same name for the MenuItem,	//				above.	//		(2)		Name of image file which contains large version of	//				the image.  This version is loaded in a pop-up window	//				when the image or text of the item is clicked.	//		(3)		Width of the large image, in pixels.	//		(4)		Height of the large image, in pixels.	//		(5)		Name of image file (thumbnail) to represent the	//				item in the list.	//		(6)		Width of the cells (column) for images (should be	//				same for all)	//		(7)		Height of the cells (rows) for images (should be	//				same for all)	//		(8)		Left-right alignment within cell.	//				"left", "center", "right"	//		(9)		Up-down alignment within cell.	//				"top", "middle", "bottom"	//		(10)	Title.	//		(11)	Text to go with title (e.g., "20 x 30 cm", etc.).	//				Can be multiple lines by adding <br> between text	//				for each line.	//	// Pages get grouped together on the same page by having the	// same label (first variable).			// START DEFINITION OF "2008" PAGE ------------------------	// First, set the layout parameters for the page:		SetPageNumCols	= 2;			// number of columns of images	SetPageTxtLocn	= kTextRight;	// kTextRight puts text to the right,									// kTextBelow puts text below	SetPageTxtSpace	= 0;			// if kTextRight, this is width in									// pixels for columns where text									// labels go									// if kTextBelow, this is height in									// pixels for rows where text									// labels go	SetPageTxtValign = "bottom";	// vertical alignment of text									// in its cell	SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;			// spacing between rows of image									// cells on the page		setLayout("2008", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	// To make things easier...	 	gWidth 		= 220;				// used to set the image cell width	gHeight 	= 180;				// used to set the image cell height	gAlign 		= "center";			// used to set the image horz alignment	gVAlign 	= "bottom";			// used to set the image vert alignment		// Add header items to the page.  That is, a title	// and/or descriptive paragraphs (or blank space).	//	// 		(1)	Page Name.  Again, must be consistent.	//		(2) Type of item.  Can be a title, a paragraph, or	//			blankspace.  Values to use are:  "title",	//			"paragraph", or "blankspace"	//		(3) Text.  Either the title or the paragraph.	//		(4) Space.  For "title" or "paragraph", this is the	//			indentation, in pixels.  For "blankspace", it is the	//			vertical space to add, in pixels.		addHeadItem("2008", "blankspace", "", 48);	addHeadItem("2008", "title", "work > 2008", 90);	addHeadItem("2008", "blankspace", "", 50);	// Here is where you can put additional space *before* each	// column of items.  You should have one line here for every column,	// even if the space is zero.   (That is, you should have the same	// number of these here as the value of SetPageNumCols, above.)	addColSpace("2008", 120);	addColSpace("2008", 50);	// Here's where you define each item...	// (Note that you can have empty items in a column.)	// See notes above for an explanation of each element.  	addItem("2008", "08over4-420x560.jpg", 420, 560,			"08over4sml.jpg", 80, 100, gAlign, "middle",			"",			"");  	addItem("2008", "feet560x431.jpg",431, 560,			"feet sml.jpg", gWidth, 178, gAlign, gVAlign,			"Feet",			"<br>70x90cm<br>oil on canvas");		addItem("2008", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2008", "dog I 560x421.jpg",569, 421,			"dog I sml.jpg", gWidth, 188, gAlign, gVAlign,			"Dog",			"<br>150x120cm<br>oil on canvas");		addItem("2008", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2008", "space II 423x560.jpg",423, 560,			"space II sml.jpg", gWidth, 188, gAlign, gVAlign,			"Space II",			"<br>40x30cm<br>oil on canvas");		addItem("2008", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2008", "los I 560x447.jpg",560, 447,			"los I sml.jpg", gWidth, 188, gAlign, gVAlign,			"Negative Space I",			"<br>40x50cm<br>oil on canvas");		addItem("2008", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2008", "los II 560x448.jpg",560, 448,			"los II sml.jpg", gWidth, 188, gAlign, gVAlign,			"Negative Space II",			"<br>40x50cm<br>oil on canvas");	  	addItem("2008", "08over1-420x560.jpg", 560, 420,			"08over1sml.jpg", 80, 100, gAlign, "middle",			"",			"");  	addItem("2008", "los III 560x445.jpg",560, 445,			"los III sml.jpg", gWidth, 188, gAlign, gVAlign,			"Negative Space III",			"<br>40x50cm<br>oil on canvas");		addItem("2008", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2008", "wig I 452x560.jpg",452, 560,			"wig I sml.jpg", gWidth, 188, gAlign, gVAlign,			"Wig I",			"<br>50x40cm<br>oil on canvas");					// START DEFINITION OF "2007" PAGE ------------------------	// First, set the layout parameters for the page:		SetPageNumCols	= 2;			// number of columns of images	SetPageTxtLocn	= kTextRight;	// kTextRight puts text to the right,									// kTextBelow puts text below	SetPageTxtSpace	= 0;			// if kTextRight, this is width in									// pixels for columns where text									// labels go									// if kTextBelow, this is height in									// pixels for rows where text									// labels go	SetPageTxtValign = "bottom";	// vertical alignment of text									// in its cell	SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;			// spacing between rows of image									// cells on the page		setLayout("2007", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	// To make things easier...	 	gWidth 		= 220;				// used to set the image cell width	gHeight 	= 180;				// used to set the image cell height	gAlign 		= "center";			// used to set the image horz alignment	gVAlign 	= "bottom";			// used to set the image vert alignment		// Add header items to the page.  That is, a title	// and/or descriptive paragraphs (or blank space).	//	// 		(1)	Page Name.  Again, must be consistent.	//		(2) Type of item.  Can be a title, a paragraph, or	//			blankspace.  Values to use are:  "title",	//			"paragraph", or "blankspace"	//		(3) Text.  Either the title or the paragraph.	//		(4) Space.  For "title" or "paragraph", this is the	//			indentation, in pixels.  For "blankspace", it is the	//			vertical space to add, in pixels.		addHeadItem("2007", "blankspace", "", 48);	addHeadItem("2007", "title", "work > 2007", 90);	addHeadItem("2007", "blankspace", "", 50);	// Here is where you can put additional space *before* each	// column of items.  You should have one line here for every column,	// even if the space is zero.   (That is, you should have the same	// number of these here as the value of SetPageNumCols, above.)	addColSpace("2007", 120);	addColSpace("2007", 50);	// Here's where you define each item...	// (Note that you can have empty items in a column.)	// See notes above for an explanation of each element.  	addItem("2007", "07OVER3-560x350.jpg", 560, 350,			"07OVER3sml.jpg", 80, 100, gAlign, "middle",			"",			"");  	addItem("2007", "07keep560-464.jpg",560, 464,			"07keepsml.jpg", gWidth, 178, gAlign, gVAlign,			"Keeping Busy",			"<br>50x60cm<br>oil on canvas");		addItem("2007", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2007", "penance I 448X560.jpg",448, 560,			"penance I sml.jpg", gWidth, 188, gAlign, gVAlign,			"Penance I",			"<br>150x120cm<br>oil on canvas");		addItem("2007", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2007", "penance II  448x560.jpg",448, 560,			"penance II  sml.jpg", gWidth, 188, gAlign, gVAlign,			"Penance II",			"<br>150x120cm<br>oil on canvas");		addItem("2007", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2007", "07domes560-560.jpg",560, 560,			"07domesml.jpg", gWidth, 176, gAlign, gVAlign,			"Domestic Landscape",			"<br>100x100cm<br>oil on canvas");		addItem("2007", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2007", "07washI560-414.jpg",560, 414,			"07washIsml.jpg", gWidth, 144, gAlign, gVAlign,			"Washing Hands I",			"<br>30x40cm<br>oil on canvas");		addItem("2007", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2007", "07washII560-419.jpg",560, 414,			"07washIISML.jpg", gWidth, 144, gAlign, gVAlign,			"Washing Hands II",			"<br>30x40cm<br>oil on canvas");	  	addItem("2007", "07OVER2-560x420.jpg", 560, 420,			"07OVER2sml.jpg", 80, 70, gAlign, "middle",			"",			"");  	addItem("2007", "penance560x458.jpg",560, 458,			"penancesml.jpg", gWidth, 158, gAlign, gVAlign,			"Penance",			"<br>90x110cm<br>oil on canvas");	  	addItem("2007", "07OVER1-560x420.jpg", 560, 420,			"07OVER1sml.jpg", 80, 70, gAlign, "middle",			"",			"");  	addItem("2007", "plant560x458.jpg",458, 560,			"plantsml.jpg", gWidth, 187, gAlign, gVAlign,			"Plant",			"<br>110x90cm<br>oil on canvas");		addItem("2007", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2007", "07atthetable560-462.jpg",560, 462,			"07atthetablesml.jpg", gWidth, 158, gAlign, gVAlign,			"If I knew then (what I know now)",			"<br>50x60cm<br>oil on canvas");	  	addItem("2007", "07overvideo560x420.jpg", 560, 420,			"07overvideosml.jpg", 80, 70, gAlign, "middle",			"",			"");  	addItem("2007", "07video660x376.jpg",660, 376,			"keepingbusy-video-sml.jpg", gWidth, 158, gAlign, gVAlign,			"Keeping Busy",			"<br>video<br>loop 1min10");								// START DEFINITION OF "2006" PAGE ------------------------	// First, set the layout parameters for the page:		SetPageNumCols	= 2;			// number of columns of images	SetPageTxtLocn	= kTextRight;	// kTextRight puts text to the right,									// kTextBelow puts text below	SetPageTxtSpace	= 0;			// if kTextRight, this is width in									// pixels for columns where text									// labels go									// if kTextBelow, this is height in									// pixels for rows where text									// labels go	SetPageTxtValign = "bottom";	// vertical alignment of text									// in its cell	SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;			// spacing between rows of image									// cells on the page		setLayout("2006", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	// To make things easier...	 	gWidth 		= 220;				// used to set the image cell width	gHeight 	= 180;				// used to set the image cell height	gAlign 		= "center";			// used to set the image horz alignment	gVAlign 	= "bottom";			// used to set the image vert alignment		// Add header items to the page.  That is, a title	// and/or descriptive paragraphs (or blank space).	//	// 		(1)	Page Name.  Again, must be consistent.	//		(2) Type of item.  Can be a title, a paragraph, or	//			blankspace.  Values to use are:  "title",	//			"paragraph", or "blankspace"	//		(3) Text.  Either the title or the paragraph.	//		(4) Space.  For "title" or "paragraph", this is the	//			indentation, in pixels.  For "blankspace", it is the	//			vertical space to add, in pixels.		addHeadItem("2006", "blankspace", "", 48);	addHeadItem("2006", "title", "work > 2006", 90);	addHeadItem("2006", "blankspace", "", 50);	// Here is where you can put additional space *before* each	// column of items.  You should have one line here for every column,	// even if the space is zero.   (That is, you should have the same	// number of these here as the value of SetPageNumCols, above.)	addColSpace("2006", 120);	addColSpace("2006", 50);	// Here's where you define each item...	// (Note that you can have empty items in a column.)	// See notes above for an explanation of each element.	addItem("2006", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"", "");  	addItem("2006", "stormyseal560x469.jpg", 469, 560,			"stormyseasml.jpg", gWidth, 158, gAlign, gVAlign,			"Storm",			"<br>50x40cm<br>oil on canvas");		addItem("2006", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"");  	addItem("2006", "n4l.560x405.jpg", 560, 405,			"n4s.158x114.jpg", gWidth, 139, gAlign, gVAlign,			"Where there's Smoke",			"<br>24x33cm<br>oil on wood");	addItem("2006", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"");  	addItem("2006", "n4l-storm560x225.jpg", 560, 225,			"n4s-storm.jpg", gWidth, 106, gAlign, gVAlign,			"Storm",			"<br>each 30x40cm<br>oil on canvas");	addItem("2006", "2006overview560x409.jpg", 560, 409,			"2006overviewsml.jpg", 80, 100, gAlign, "middle",			"",			"");  	addItem("2006", "mountain560x560.jpg", 560, 560,			"mountainsml.jpg", gWidth, 178, gAlign, gVAlign,			"Mountain",			"<br>120x120cm<br>oil on canvas");	addItem("2006", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"");  	addItem("2006", "endoftheworld560x448.jpg", 560, 448,			"endoftheworldsml.jpg", gWidth, 166, gAlign, gVAlign,			"End of the World",			"<br>24x33cm<br>oil on canvas");	// START DEFINITION OF "2005" PAGE ------------------------	// First, set the layout parameters for the page:		SetPageNumCols	= 2;			// number of columns of images	SetPageTxtLocn	= kTextRight;	// kTextRight puts text to the right,									// kTextBelow puts text below	SetPageTxtSpace	= 0;			// if kTextRight, this is width in									// pixels for columns where text									// labels go									// if kTextBelow, this is height in									// pixels for rows where text									// labels go	SetPageTxtValign = "bottom";	// vertical alignment of text									// in its cell	SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;			// spacing between rows of image									// cells on the page		setLayout("2005", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	// To make things easier...	 	gWidth 		= 220;				// used to set the image cell width	gHeight 	= 180;				// used to set the image cell height	gAlign 		= "center";			// used to set the image horz alignment	gVAlign 	= "bottom";			// used to set the image vert alignment		// Add header items to the page.  That is, a title	// and/or descriptive paragraphs (or blank space).	//	// 		(1)	Page Name.  Again, must be consistent.	//		(2) Type of item.  Can be a title, a paragraph, or	//			blankspace.  Values to use are:  "title",	//			"paragraph", or "blankspace"	//		(3) Text.  Either the title or the paragraph.	//		(4) Space.  For "title" or "paragraph", this is the	//			indentation, in pixels.  For "blankspace", it is the	//			vertical space to add, in pixels.		addHeadItem("2005", "blankspace", "", 48);	addHeadItem("2005", "title", "work > 2005", 90);	addHeadItem("2005", "blankspace", "", 50);	// Here is where you can put additional space *before* each	// column of items.  You should have one line here for every column,	// even if the space is zero.   (That is, you should have the same	// number of these here as the value of SetPageNumCols, above.)	addColSpace("2005", 120);	addColSpace("2005", 50);	// Here's where you define each item...	// (Note that you can have empty items in a column.)	// See notes above for an explanation of each element.  	addItem("2005", "a3b_lrg_420x560.jpg", 420, 560,			"a3b_sml.jpg", 80, 70, gAlign, "middle",			"",			"");  	addItem("2005", "a3_lrg_450x560.jpg", 450, 560,			"a3_sml.jpg", gWidth, 70, gAlign, gVAlign,			"Mountain II",			"<br>41x33cm<br>oil on wood");	addItem("2005", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"",			"");  	addItem("2005", "a4_lrg_452x560.jpg", 452, 560,			"a4_sml.jpg", gWidth, 158, gAlign, gVAlign,			"Mountain I",			"<br>41x33cm<br>oil on wood");	addItem("2005", "a5b_lrg_560x406.jpg", 560, 406,			"a5b_sml.jpg", 80, 100, gAlign, "middle",			"",			"");  	addItem("2005", "a5_lrg_560x410.jpg", 560, 410,			"a5_sml.jpg", gWidth, 116, gAlign, gVAlign,			"Fire",			"<br>24x33cm<br>oil on wood");	addItem("2005", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"",			"");  	addItem("2005", "a6_lrg_560x458.jpg", 560, 458,			"a6_sml.jpg", gWidth, 126, gAlign, gVAlign,			"Mount I",			"<br>19x24cm<br>oil on wood");	addItem("2005", "a7b_lrg_560x492.jpg", 505, 492,			"a7b_sml.jpg", 80, 70, gAlign, "middle",			"",			"");  	addItem("2005", "a7_lrg_560x449.jpg", 560, 449,			"a7_sml.jpg", gWidth, 127, gAlign, gVAlign,			"Mount II",			"<br>19x24cm<br>oil on wood");	addItem("2005", "", 0, 0,			"", 80, 0, gAlign, gVAlign,			"",			"");  	addItem("2005", "a9_lrg_560x407.jpg", 560, 407,			"a9_sml.jpg", gWidth, 115, gAlign, gVAlign,			"Mountain Rain",			"<br>24x33<br>oil on wood");				// START DEFINITION OF Page "2004" ------------------------			SetPageNumCols	= 2;				SetPageTxtLocn	= kTextRight;		SetPageTxtSpace	= 100;				SetPageTxtValign = "bottom";		SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;				setLayout("2004", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	addHeadItem("2004", "blankspace", "", 48);	addHeadItem("2004", "title", "work > 2004", 90);	addHeadItem("2004", "blankspace", "", 50);	addColSpace("2004", 120);	addColSpace("2004", 50);	gWidth 		= 220;		gHeight 	= 132;		gAlign 		= "center";		gVAlign 	= "middle";		addItem("2004", "b1b_lrg_347x400_OC.jpg", 347, 400,			"b1b_sml_70x81_OC.jpg", 70, 81, gAlign, gVAlign,			"",			"");  	addItem("2004", "b1_lrg_400x292_OC.jpg", 400, 292,			"b1_sml_180x132_OC.jpg", gWidth, 119, gAlign, gVAlign,			"Fire 1",			"<br>24 x 33 cm<br>oil on wood");  	addItem("2004", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2004", "b3_lrg_400x300_OC.jpg", 400, 300,			"b3_sml.jpg", gWidth, 119, gAlign, gVAlign,			"Fire 3",			"<br>24 x 33 cm<br>oil on wood");  	addItem("2004", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2004", "b4_lrg_560x404.jpg", 560, 404,			"b4_sml.jpg", gWidth, 114, gAlign, gVAlign,			"Land-Sea-Sky",			"<br>24 x 33 cm<br>oil on wood");	addItem("2004", "b5b_lrg_560x429.jpg", 560, 429,			"b5b_sml.jpg", 90, 61, gAlign, gVAlign,			"",			"");  	addItem("2004", "b5_lrg_447x560.jpg", 447, 560,			"b5_sml.jpg", gWidth, 158, gAlign, gVAlign,			"Big Fire",			"<br>250 x 200 cm<br>oil on canvas");	addItem("2004", "b6b_lrg_560x420.jpg", 560, 420,			"b6b_sml.jpg", 90, 60, gAlign, gVAlign,			"",			"");  	addItem("2004", "b6_lrg_560x401.jpg", 560, 401,			"b6_sml.jpg", gWidth, 113, gAlign, gVAlign,			"Volcano I",			"<br>24 x 33 cm<br>oil on wood");  	addItem("2004", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2004", "b7_lrg_560x405.jpg", 560, 405,			"b7_sml.jpg", gWidth, 114, gAlign, gVAlign,			"Volcano II",			"<br>24 x 33 cm<br>oil on wood");			addItem("2004", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2004", "b8_lrg_560x405.jpg", 560, 405,			"b8_sml.jpg", gWidth, 114, gAlign, gVAlign,			"Volcano III",			"<br>24 x 33 cm<br>oil on wood");			addItem("2004", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2004", "b9_lrg_560x405.jpg", 560, 405,			"b9_sml.jpg", gWidth, 114, gAlign, gVAlign,			"Volcano IV",			"<br>24 x 33 cm<br>oil on wood");			// START DEFINITION OF Page 2002/03  ------------------------			SetPageNumCols	= 2;		SetPageTxtLocn	= kTextRight;	SetPageTxtSpace	= 100;	SetPageTxtValign = "bottom";	SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;		setLayout("2002/03", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	gWidth 		= 220;		gHeight 	= 132;		gAlign 		= "center";		gVAlign 	= "middle";		addItem("2002/03", "c1b_lrg_560x399.jpg", 560, 399,			"c1b_sml.jpg", 90, 57, gAlign, gVAlign,			"",			"");  	addItem("2002/03", "c1_lrg_560x260.jpg", 560, 260,			"c1_sml.jpg", gWidth, 73, gAlign, gVAlign,			"Diptique I",			"<br>80x80cm (2x)<br>oil on canvas, oil on wood");  	addItem("2002/03", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2002/03", "c2_lrg_560x260.jpg", 560, 260,			"c2_sml.jpg", gWidth, 73, gAlign, gVAlign,			"Diptique II",			"<br>80x80cm(2x)<br>oil on canvas, oil on wood");  	addItem("2002/03", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2002/03", "c3_lrg_560x260.jpg", 560, 260,			"c3_sml.jpg", gWidth, 73, gAlign, gVAlign,			"Diptique IV",			"<br>80x80cm(2x)<br>oil on canvas, oil on wood");  	addItem("2002/03", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2002/03", "c4_lrg_560x211.jpg", 560, 211,			"c4_sml.jpg", gWidth, 60, gAlign, gVAlign,			"Diptique XI",			"<br>33x41cm(2x)<br>oil on wood");  	addItem("2002/03", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");  	addItem("2002/03", "c5_lrg_560x447.jpg", 560, 447,			"c5_sml.jpg", gWidth, 126, gAlign, gVAlign,			"Untitled",			"<br>200x250cm<br>oil on canvas");			addColSpace("2002/03", 120);	addColSpace("2002/03", 50);	addHeadItem("2002/03", "blankspace", "", 48);	addHeadItem("2002/03", "title", "work  >  2002/03", 90);	addHeadItem("2002/03", "blankspace", "", 50);	// START DEFINITION OF Page 2000/01 ------------------------		SetPageNumCols	= 2;				SetPageTxtLocn	= kTextRight;		SetPageTxtSpace	= 100;	SetPageTxtValign = "bottom";	SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;		setLayout("2000/01", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	addHeadItem("2000/01", "blankspace", "", 48);	addHeadItem("2000/01", "title", "work > 2000/01", 90);	addHeadItem("2000/01", "blankspace", "", 50);	addColSpace("2000/01", 120);	addColSpace("2000/01", 50);	gWidth 		= 220;					gHeight 	= 132;					gAlign 		= "center";		gVAlign 	= "middle";		addItem("2000/01", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");	addItem("2000/01", "d1_lrg_560x560.jpg", 560, 560,			"d1_sml.jpg", gWidth, 159, gAlign, gVAlign,			"Water",			"<br>120x120cm<br>oil on canvas");	addItem("2000/01", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");				addItem("2000/01", "d2_lrg_560x560.jpg", 560, 560,			"d2_sml.jpg",  gWidth, 159, gAlign, gVAlign,			"Water",			"<br>60x60cm<br>oil on canvas");	addItem("2000/01", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");				addItem("2000/01", "d3_lrg_453x560.jpg", 453, 560,			"d3_sml.jpg", gWidth, 158, gAlign, gVAlign,			"Sea",			"<br>128x104cm<br>oil on canvas");				addItem("2000/01", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");				addItem("2000/01", "d4_lrg_560x310.jpg", 560, 310,			"d4_sml.jpg", gWidth, 87, gAlign, gVAlign,			"Sea",			"<br>30x22cm(2x)<br>oil on canvas");				addItem("2000/01", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");				addItem("2000/01", "d5_lrg_455x560.jpg", 455, 560,			"d5_sml.jpg", gWidth, 158, gAlign, gVAlign,			"Grass",			"<br>128x104cm<br>oil on canvas");				addItem("2000/01", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");				addItem("2000/01", "d6_lrg_451x560.jpg", 451, 560,			"d6_sml.jpg", gWidth, 158, gAlign, gVAlign,			"Landscape",			"<br>128x104cm<br>oil on canvas");				addItem("2000/01", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",			"");				addItem("2000/01", "d7_lrg_560x261.jpg", 560, 261,			"d7_sml.jpg", gWidth, 74, gAlign, gVAlign,			"Beach",			"<br>60x60cm(2x)<br>oil on canvas");		// START DEFINITION OF Living Room Project page ------------------			SetPageNumCols	= 2;				SetPageTxtLocn	= kTextRight;		SetPageTxtSpace	= 100;				SetPageTxtValign = "bottom";	SetPageTxtStyle = "style10pt";	SetPageRowSpace = 70;		setLayout("living", SetPageNumCols, SetPageTxtLocn,			  SetPageTxtSpace, SetPageTxtValign,			  SetPageTxtStyle, SetPageRowSpace);	// This is just a junk paragraph for testing.  However,	// it shows how to build up a paragraph with several statements.	theParagraph  = "In November 1998, people received a letter inviting them to take part in the Living Room Project. ";	theParagraph += "<br><br>In practice, this project required participants to choose a painting of Marian Wijnvoord and take it home for a period of two months. At the end of this time a photograph would be taken of the painting in this private environment. ";	theParagraph += "<br><br>The project was not a public exhibition. Every aspect of it called for intimacy: the experience of choosing a painting, carrying it home, finding a place for it. And, of course, living with the work.  Together these acts offered ways of experiencing a painting other than one would in a studio or gallery visit.";	theParagraph += "<br><br>The photographs taken document this idea: the privacy of someone's living space, and the way a painting becomes a part of this environment.";			addHeadItem("living", "blankspace", "", 48);	addHeadItem("living", "title", "work  >  living room project", 90);	addHeadItem("living", "blankspace", "", 40);	addHeadItem("living", "paragraph", theParagraph, 90);	addHeadItem("living", "blankspace", "", 40);	addColSpace("living", 120);	addColSpace("living", 50);	gWidth 		= 220;		gHeight 	= 132;	gAlign 		= "center";		gVAlign 	= "bottom";		addItem("living", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"",  "");  	addItem("living", "1_lrg_560x353.jpg", 560, 353,			"1_sml.jpg", gWidth, 100, gAlign, gVAlign,			"", "");	addItem("living", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"", "");  	addItem("living", "2_lrg_560x471.jpg", 560, 471,			"2_sml.jpg", gWidth, 133, gAlign, gVAlign,			"", "");	addItem("living", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"", "");  	addItem("living", "3_lrg_560x359.jpg", 560, 359,			"3_sml.jpg", gWidth, 101, gAlign, gVAlign,			"", "");	addItem("living", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"", "");  	addItem("living", "4_lrg_372x560.jpg", 372, 560,			"4_sml.jpg", gWidth, 158, gAlign, gVAlign,			"", "");	addItem("living", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"", "");  	addItem("living", "5_lrg_368x560.jpg", 368, 560,			"5_sml.jpg", gWidth, 158, gAlign, gVAlign,			"",  "");	addItem("living", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"", "");  	addItem("living", "6_lrg_560x409.jpg", 560, 409,			"6_sml.jpg", gWidth, 115, gAlign, gVAlign,			"", "");		addItem("living", "", 0, 0,			"", 90, 0, gAlign, gVAlign,			"", "");  	addItem("living", "7_lrg_422x560.jpg", 422, 560,			"7_sml.jpg", gWidth, 158, gAlign, gVAlign,			"", "");	//-->