/*
	JavaScript
	http://www.kfr-art.com
	July 2008 */

var Caption = new Array();
var caption = 1;

function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function paintings(name) {
	var img = new Image();
	img.src = "art/" + name + ".jpg";
	document.getElementById('painting').src = img.src;
	document.getElementById('caption').innerHTML = Caption[name];
}

// An array of captions
Caption[1]  = "New Beginnings (2004) 22 x 28 Oil on Canvas";
Caption[2]  = "Possibility (2004) 48 x 30 Oil on Canvas";
Caption[3]  = "Spring Storm (2004) 12 x 10 Oil on Canvas";
Caption[4]  = "Abstract Study 1 (2004) 30 x 30 Oil on Canvas";
Caption[5]  = "Dance of the Dresses (2005) 12 x 12 Oil on Canvas";
Caption[6]  = "Montreal Sunset (2005) 12 x 12 Oil on Canvas";
Caption[7]  = "Nickel Beach (2005) 12 x 12 Oil on Canvas";
Caption[8]  = "Opening (2005) 12 x 12 Oil on Canvas";
Caption[9]  = "Waking Route (2005) 12 x 12 Oil on Canvas";
Caption[10]  = "Bridges and Fields (2006) Acrylic on Canvas";
Caption[11]  = "Canoe (2006) 48 x 36 Oil on Canvas";
Caption[12]  = "House (2006) 48 x 36 Oil on Canvas";
Caption[13]  = "Subdividing the Garden (2006) 50 x 48 Oil on Canvas";
Caption[14]  = "Excavation (2007) 36 x 48 Oil on Canvas";
Caption[15]  = "Green Blue (2007) 30 x 36 Oil on Canvas";
Caption[16]  = "Red Green Pink (2007) 36 x 48 Oil on Canvas";
Caption[17]  = "Red Pink Black (2007) 36 x 48 Oil on Canvas";
Caption[18]  = "Axiom (2007) 46 x 50 Oil on Canvas";
Caption[19]  = "Carnival (2007) 30 x 32 Oil on Canvas";
Caption[20]  = "Lone Pine (2007) 62 x 56 Oil on Canvas";
Caption[21]  = "Green Line (2007) 62 x 40 Oil on Canvas";
Caption[22]  = "Coded Dream I (2008) 48 x 60 Oil on Canvas";
Caption[23]  = "Coded Dream II (2008) 48 x 60 Oil on Canvas";
Caption[24]  = "Coded Dream III (2008) 48 x 60 Oil on Canvas";
Caption[25]  = "Dream Sketch I (2008) 18 x 24 Oil on Canvas";
Caption[26]  = "Dream Sketch II (2008) 18 x 24 Oil on Canvas";
Caption[27]  = "Dream Sketch III (2008) 18 x 25 Oil on Canvas";





