// Begin Flagged Image Object
function FlaggedImage(fiLabel, fiMed, fiSize, fiAvail, fiSrc, fipw, fiph)
{
	this.flaggedImageTitle = fiLabel;				// String for Title
	this.flaggedImageMedium = fiMed;				// String for Medium
	this.flaggedImageSize = fiSize;					// String for Painting Dims
	this.available = fiAvail;					// boolean for selling
	this.flaggedImageSrc = "http://www.koala-pierrot.com/images/" + fiSrc + ".jpg";
	this.flaggedImagePixWidth = fipw;				// int for width in pixels
	this.flaggedImagePixHeight = fiph;				// int for height in pixels
	this.flaggedImageThumbSrc = "http://www.koala-pierrot.com/images/" + fiSrc + ".gif";
}
// End FlaggedImage Object





// Begin ImageManager Object
function ImageManager()
{
	this.flaggedImages = null;			// FlaggedImage[]
}
function addImg(fiLabel, fiMed, fiSize, fiAvail, fiSrc, fipw, fiph)
{
	var fi = new FlaggedImage(fiLabel, fiMed, fiSize, fiAvail, fiSrc, fipw, fiph);

	if(this.flaggedImages == null)
	{
		this.flaggedImages = new Array(1);
		this.flaggedImages[0] = fi;
		return;
	}

	var fis = new Array(this.flaggedImages.length + 1);

	for(var i = 0; i < fis.length; i++)
	{
		if(i < this.flaggedImages.length)
		{
			fis[i] = this.flaggedImages[i];
		}
		else
		{
			fis[i] = fi;
		}
	}

	this.flaggedImages = fis;
}
function getRecentWork()
{
	if(this.flaggedImages == null || this.flaggedImages.length == 0)
	{
		return "Nothing available";
	}

	var count = 0;
	for(var i = 0; i < this.flaggedImages.length; i++)
	{
		if(this.flaggedImages[i].available)
		{
			count++;
		}
	}

	var recentWork = new Array(count);
	count = 0;
	for(var i = 0; i < this.flaggedImages.length; i++)
	{
		if(this.flaggedImages[i].available)
		{
			recentWork[count++] = this.flaggedImages[i];
		}
	}

	var rwHtml = "<table cellspacing='10' align='center'>";
	rwHtml += "<tr>";
	rwHtml += "<th></th>";
	rwHtml += "<th>Title</th>";
	rwHtml += "<th>Size</th>";
	rwHtml += "<th>Medium</th>";
	rwHtml += "</tr>";
	for(var i = 0; i < recentWork.length; i++)
	{
		var ps = '"' + recentWork[i].flaggedImageSrc + '"';
		var pw = recentWork[i].flaggedImagePixWidth;
		var ph = recentWork[i].flaggedImagePixHeight;
		var pt = '"' + recentWork[i].flaggedImageTitle + '"';

		rwHtml += "<tr>";
		rwHtml += "<td style='cursor: pointer;' ";
		rwHtml += "onclick='viewGalleryImage("+ps+", "+pw+", "+ph+", "+pt+")'>";
		rwHtml += "<img src='" + recentWork[i].flaggedImageThumbSrc + "' ";
		rwHtml += "width='120' height='120' border='0'/>";
		rwHtml += "</td>";
		rwHtml += "<td align='center'><h3>\"" + recentWork[i].flaggedImageTitle + "\"</h3></td>";
		rwHtml += "<td align='center'><h3>" + recentWork[i].flaggedImageSize + "</h3></td>";
		rwHtml += "<td align='center'><h3>" + recentWork[i].flaggedImageMedium + "</h3></td>";
		rwHtml += "</tr>";
	}
	rwHtml += "</table>";
	rwHtml += "<p style='color: #a00000;'>All images protected by copyright &copy;</p>";

	return rwHtml;
}
function getPastWork()
{
	if(this.flaggedImages == null || this.flaggedImages.length == 0)
	{
		return "Nothing available";
	}

	var count = 0;
	for(var i = 0; i < this.flaggedImages.length; i++)
	{
		if(!this.flaggedImages[i].available)
		{
			count++;
		}
	}

	var pastWork = new Array(count);
	count = 0;
	for(var i = 0; i < this.flaggedImages.length; i++)
	{
		if(!this.flaggedImages[i].available)
		{
			pastWork[count++] = this.flaggedImages[i];
		}
	}

	var pwHtml = "<table cellspacing='40' align='center'>";

	count = 0;
	while(count < pastWork.length)
	{
		pwHtml += "<tr>";

		for(var i = 0; i < 4; i++)
		{
			if(count < pastWork.length)
			{
				var ps = '"' + pastWork[count].flaggedImageSrc + '"';
				var pw = pastWork[count].flaggedImagePixWidth;
				var ph = pastWork[count].flaggedImagePixHeight;
				var pt = '"' + pastWork[count].flaggedImageTitle + '"';

				pwHtml += "<td align='center' style='cursor: pointer;' ";
				pwHtml += "onclick='viewGalleryImage("+ps+", "+pw+", "+ph+", "+pt+");'>";
				pwHtml += "<img src='";
			 	pwHtml += pastWork[count].flaggedImageThumbSrc + "' ";
				pwHtml += "width='120' height='120' border='0'><br/>";
				pwHtml += "<b>" + pastWork[count++].flaggedImageTitle;
				pwHtml += "</b></td>";
			}
			else
			{
				pwHtml += "<td></td>";
			}
		}

		pwHtml += "</tr>";
	}
	pwHtml += "</table>";
	pwHtml += "<p style='color: #900000;'>All images protected by copyright &copy;</p>";

	return pwHtml;
}
function viewGalleryImage(ps, pw, ph, pt)
{
	var winStr = "<html><head><title>" + pt + "</title></head>";
		winStr += "<body style='margin: 0px;' onblur='this.close()'>";
		winStr += "<table style='width: " + pw + "px; ";
		winStr += "height: " + ph + "px; ";
		winStr += "background-image: url(" + ps + ");'>";
		winStr += "<tr>";
		winStr += "<td align='right' valign='bottom' "; 
		winStr += "style='font: normal 7pt sans-serif; color: white;'>";
		winStr += "protected by copyright &copy;"; 
		winStr += "</td></tr></table></body></html>";
	var leftPos = (screen.width - pw) / 2;
	var topPos = (screen.height - ph) / 2;
	var winPref = "left=" + leftPos + ",top=" + topPos + ",width=" + pw + ",height=" + ph;
	var galleryView;

	galleryView = window.open("", "galleryView", winPref);
	galleryView.document.open();
	galleryView.document.write(winStr);
	galleryView.document.close();
}
ImageManager.prototype.addImg = addImg;
ImageManager.prototype.getRecentWork = getRecentWork;
ImageManager.prototype.getPastWork = getPastWork;
ImageManager.prototype.viewGalleryImage = viewGalleryImage;
// End ImageManager Object





// Use this space below to create a list of flagged images...


var yumiGM = new ImageManager();
yumiGM.addImg("Hang On","Oil","18\" x 24\"",true,"hangOn",600,450);
yumiGM.addImg("Break Time","Oil","6\" x 6\" x 1&frac12;\"",true,"breaktime2",500,500);
yumiGM.addImg("Brunch Time 2","Oil","6\" x 6\" x 1&frac12;\"",true,"brunchtime2",500,500);
yumiGM.addImg("Symphony of Light","Oil","36\" x 48\" x 1&frac12;\"",true,"symphonyOfLight",455,600);
yumiGM.addImg("Adiue and Hello","Oil","30\" x 40\" x 1&frac12;\"",true,"aduAndHello",600,450);
yumiGM.addImg("Backstage 3","Oil","6\" x 6\" x 1&frac12;\"",true,"backstage_3",500,500);
yumiGM.addImg("Tranquility","Oil","16\" x 20\"",true,"tranquility",600,480);
yumiGM.addImg("The Lemonade Stand","Oil","6\" x 6\" x 1&frac12;\"",true,"lemonadeStand",500,500);
yumiGM.addImg("Peek-A-Boo!","Oil","6\" x 6\" x 1&frac12;\"",true,"peekABoo",500,500);
yumiGM.addImg("A Street in Bergen","Oil","6\" x 6\" x 1&frac12;\"",true,"bergenStreet",500,500);
yumiGM.addImg("Pierrot and Blue Bird","Oil","16\" x 20\"",true,"pierrotAndBird",483,600);
yumiGM.addImg("Dusk on the Seine","Oil","22\" x 28\"",true,"seineAtDusk",600,480);
yumiGM.addImg("Evening in Paris","Oil","11\" x 14\"", true,"parisCafeAtNight",468,600);
yumiGM.addImg("Apologize","Oil","30\" x 30\"",true,"apologize",500,500);
yumiGM.addImg("Snow Dance","Oil","24\" x 36\"",true,"snowDance",400,600);
yumiGM.addImg("??","Oil","6\" x 6\" x 1&frac12;\" x (4)",true,"huh",586,600);
yumiGM.addImg("Girlfriend","Oil","11\" x 14\"",false,"mae",468,600);
yumiGM.addImg("White Swans","Oil","24\" x 36\" x 1\"",true,"swans",405,600);
yumiGM.addImg("Dusk on the Prado","Oil","20\" x 24\"",true,"duskOnThePrado",600,471);
yumiGM.addImg("La Jolla View","Oil","20\" x 24\"",true,"laJollaView",600,500);
yumiGM.addImg("Curtain Call","Oil","16\" x 20\"",false,"curtainCall",483,600);
yumiGM.addImg("Party of Eight","Oil","16\" x 20\"",false,"partyOfEight",600,427);
yumiGM.addImg("Toward the Light","Oil","24\" x 30\"",true,"peace2",481,600);
yumiGM.addImg("&#24859;&#12289;&#24184;&#12288;&#12392;&#12288;&#21644;","Oil","16\" x 24\"",false,"love",482,600);
yumiGM.addImg("Kyukei","Oil","24\" x 30\"",true,"kyukei",600,482);
yumiGM.addImg("Sisters","Oil","16\" x 20\"",true,"sisters",600, 480);
yumiGM.addImg("Friendship","Oil","12\" x 16\"",true,"friendship",400,533);
yumiGM.addImg("Hotel Del Coronado","Oil","11\" x 14\"",false,"hotelDelCoronado",600,471);
yumiGM.addImg("Romance (table top)","Oil","22\" x 48\"",false,"romance_table",600, 277);
yumiGM.addImg("The Waiter","Acrylic","76\" x 24\"",false,"waiter",400,900);
yumiGM.addImg("Coffee Beans","Oil","36\" x 72\"",false,"coffeeBeans",600,221);
yumiGM.addImg("Afternoon Light &mdash; Paris","Oil","9\" x 12\"",false,"cafeInParis",477,600);
yumiGM.addImg("Night And Day","Oil","9\" x 12\"",false,"nightAndDay",493,600);
yumiGM.addImg("Street Musicians","Oil","16\" x 20\"",false,"streetMusicians",476,600);
yumiGM.addImg("Picnic - 1930s","Oil","(16\" x 20\") x 2",true,"picnic1930s",639,400);
yumiGM.addImg("Music At La Valencia","Oil","16\" x 20\"",false,"musicAtLaValencia",600,476);
yumiGM.addImg("Music Break","Oil","16\" x 20\"",true,"musicBreak",600,478);
yumiGM.addImg("Rainy City","Oil","9\" 12\"",false,"rainyCity",600,430);
yumiGM.addImg("Horse Carriage - La Jolla","Oil","11\" x 14\"",false,"horseCarriageLaJolla",500,430);
yumiGM.addImg("Friends of Kiki","Oil","11\" x 14\"",false,"friendsOfKiki",600,472);
yumiGM.addImg("A View from La Valencia","Oil","11\" x 14\"",false,"laValenciaView",600,472);
yumiGM.addImg("A Day at the Beach","Oil","20\" x 24\"",true,"aDayAtTheBeach",600,500);
yumiGM.addImg("Montparnasse Dinner","Oil","16\" x 20\"",false,"montparnasseDinner", 600,480);
yumiGM.addImg("Ciao Bella Break","Oil","9\" x 12\"",false,"ciaoBellaBreak",600,450);
yumiGM.addImg("Corner Caf&eacute; - Paris","Oi","9\" x 12\"",false,"cornerCafeParis",450,600);
yumiGM.addImg("A Couple - Koi","Oil","5\" x 7\"",false,"koiCouple",600,422);
yumiGM.addImg("Twilight Prado","Oil","18\" x 24\"",false,"twilightPrado",600,452);
yumiGM.addImg("Morning Light - Balboa Park","Oil","11\" x 14\"",true,"morningLightBP",472,600);
yumiGM.addImg("Coffee &amp; Pastries","Oil","12\" x 16\"",true,"coffeeAndPastries",600, 450);
yumiGM.addImg("Peace","Oil","9\" x 12\"",false,"peace",454,600);
yumiGM.addImg("Lake Murray","Oil","16\" x 20\"",true,"lakeMurray",600,480);
yumiGM.addImg("Koi Conversation","Oil","11\" x 14\"",true,"koiConversation",470,600);
yumiGM.addImg("A Pair - gala apples","Oil","12\" x 16\"",false,"galaApples",600,448);
yumiGM.addImg("Morning Light on the Prado","Oil","18\" x 24\"",true,"morningLightOnThePrado",600,450);
yumiGM.addImg("Music At Caio Bella", "Oil", "24\" X 30\"",false,"musicAtCaioBella",600,480);
yumiGM.addImg("California Tower","Oil","20\" x 24\"",false,"californiaTower",600,500);
yumiGM.addImg("Serenity - La Jolla", "Oil", "16\" x 20\"",false,"serenityLaJolla",600,475);
yumiGM.addImg("Venice 2","Oil","16\" x 20\"",true,"venice2",439,550);
yumiGM.addImg("Koi - Yin/Yan &amp; Love","Oil","18\" x 24\"",false,"koiYinYan",600, 449);
yumiGM.addImg("Caf&eacute; Voltaire - 1930s","Oil","18\" x 24\"",true,"cafeVoltaire",600,446);
yumiGM.addImg("Break Time","Oil","9\" x 12\"",true,"breakTime",500,374);
yumiGM.addImg("Moonlight Serenade","Oil","24\" x 36\"",true,"moonlightSerenade",600,400);
yumiGM.addImg("Evening Serenade","Oil","24\" x 36\"",true,"eveningSerenade",600,400);
yumiGM.addImg("Koi - Conversation","Oil","12\" x 16\"",false,"koi2",600,465);
yumiGM.addImg("Caf&eacute; de Flore - Paris","Oil","16\" x 20\"",false,"atCafeFlore",600,482);
yumiGM.addImg("Lily Pond - Balboa Park","Oil","16\" x 20\"",true,"lilyPond",600,477);
yumiGM.addImg("At Caf&eacute; Dome - 1930s","Oil","18\" x 24\"",false,"atCafeDome",668,500);
yumiGM.addImg("On the Prado", "Oil","24\" x 30\" x 1&frac12;\"",false,"onThePrado", 625, 500);
yumiGM.addImg("Caf&eacute; du Dome - 30","Oil","12\" x 16\"",false,"cafeDuDome",666,500);
yumiGM.addImg("Organ Pavillion", "Oil", "16\" x 20\"", true, "organPavillion", 625, 500);
yumiGM.addImg("Bistro Zinc", "Oil", "18\" x 24\"", true, "bistroZinc", 669, 500);
yumiGM.addImg("Marsalis, Yo-Yo Ma, Ozawa", "Oil", "24\" x 30\"", false, "trio", 600, 480);
yumiGM.addImg("At the DOME - Good ole 1930s", "Oil Sketch", "16\" x 20\"", false, "thirties", 600, 480);
yumiGM.addImg("Koi", "Oil", "12\", x 16\"", false, "koi", 600, 450);
yumiGM.addImg("Bye Bye Blackbird", "Oil", "16\" x 20\"", false, "mockingBird", 480, 600);
yumiGM.addImg("A Caf&eacute; on 5th Avenue", "Oil", "16\" x 20\"", false, "cafeOn5", 600, 480);
yumiGM.addImg("Miles Davis", "Oil", "16\" x 20\"", false, "milesDavis", 390, 500);
yumiGM.addImg("A Woman at the Museum", "Oil", "15\" x 30\"", true, "museumWoman", 300, 600);
yumiGM.addImg("Sushi","Oil","9\" x 12\"",false,"sushi",500,375);
yumiGM.addImg("Del Mar Fair", "Oil", "14\" x 18\"", true, "delMarFair", 388, 500);
yumiGM.addImg("Taka Restaurant", "Oil", "16\" x 20\"", true, "taka", 500, 400);
yumiGM.addImg("Nite In Little Italy", "Oil", "16\" x 20\"",false,"niteInLittleItaly", 500, 400);
yumiGM.addImg("Old Town Tortilla Shop", "Oil", "14\" x 18\"", false, "oldTownTortillaShop", 500, 388);
yumiGM.addImg("Italian Night", "Oil", "16\" x 20\"",false, "italianNite", 500, 400);
yumiGM.addImg("Chef - Finals", "Oil", "9\" x 12\"",false,"finals",572,700);
yumiGM.addImg("Lights in the Village", "Oil", "12\" x 16\"", true, "villageLights", 375, 500);
yumiGM.addImg("City Rain", "", "", false, "cityRain", 500, 390);
yumiGM.addImg("Night Walk", "Oil", "16\" x 20\"", true, "niteWalk", 475, 600);
yumiGM.addImg("Paris Caf&eacute;", "", "", false, "cafeParis", 500, 400); 
yumiGM.addImg("Caf&eacute; Dome", "", "", false, "cafeDome", 500, 400);
yumiGM.addImg("On a Clear Day", "Oil", "20\" x 24\"", false, "clearDay", 600, 500);
yumiGM.addImg("Pianist at La Valencia", "Oil", "24\" x 36\"", false, "pianistLaValencia", 600, 398);
yumiGM.addImg("Contemplation", "Oil", "9\" x 12\"",true,"contemplation", 450, 600);
yumiGM.addImg("The Red Rose", "Oil", "8\" x 10\"", false, "redRose", 450, 600);
yumiGM.addImg("The Red Dress", "Oil", "18\" x 24\"", false, "redDress", 450, 600);
yumiGM.addImg("Conversations", "", "", false, "conversations", 500, 391);
yumiGM.addImg("Interior Bistro", "Oil", "16\" x 20\"", false, "interiorBistro", 600, 480);
yumiGM.addImg("City Lights", "", "", false, "cityLights", 500, 400);
yumiGM.addImg("Brunch", "Oil", "16\" x 20\"", false, "brunch", 600, 480);
yumiGM.addImg("Montmartre", "Oil", "18\" x 24\"", false, "montmartre", 375, 500);
yumiGM.addImg("A Peacock", "Oil", "20\" x 24\"", true, "peacock", 500, 400);
yumiGM.addImg("City Night", "", "", false, "cityNight", 400, 500);
yumiGM.addImg("Wet Avenue", "Oil", "8\" x 10\"", false, "wetAvenue", 600, 480);
yumiGM.addImg("La Mesa Mural", "Acrylic", "", false, "mural", 600, 400);
yumiGM.addImg("City Evening", "Oil", "16\" x 20\"", false, "cityEvening", 600, 480);
yumiGM.addImg("Mt. Fuji - A View from Awashima Hotel", "Oil", "24\" x 36\"", false, "fujiView", 600, 400);
yumiGM.addImg("Sakura, Sakura", "Oil", "24\" x 36\"", true, "sakura", 600, 400);
yumiGM.addImg("Paris Caf&eacute; Interior", "Oil", "16\" x 20\"", false, "parisInteriorCafe", 500, 400);
yumiGM.addImg("California Fair", "Oil", "16\" x 20\"", false, "pierrotFair", 464, 600);
yumiGM.addImg("Abstract City", "Oil", "20, x 24\"", false, "rollerCoaster", 412, 500); 
yumiGM.addImg("Caf&eacute; de Flore", "Oil", "16\" x 20\"", false, "cafeDeFlore", 500, 400);
yumiGM.addImg("Tangerine", "Oil", "20\" x 24\"", false, "tangerine", 500, 400);
yumiGM.addImg("Moulin Rouge", "Oil", "18\" x 24\"", true, "moulinRouge", 600, 450);
yumiGM.addImg("I Remember You", "Oil", "16\" x 20\"", true, "iRemember", 400, 500);
yumiGM.addImg("Players of La Mesa", "Oil", "20\" x 24\"", true, "laMesaPlayers", 600, 450);
yumiGM.addImg("La Jolla Shores", "Oil", "16\" x 20\"", true, "laJollaShores", 500, 400);
yumiGM.addImg("A Night on the Prado", "Oil", "24\" x 30\"", false, "eveningPrado", 600, 500);
yumiGM/addImg("Mademoiselle", "Oil", "9\" x 12\"", false, "mademoiselle", 411, 550);
yumiGM.addImg("The Champs - Elsees", "Oil", "20\" x 24\"", false, "champ", 500, 414);
yumiGM.addImg("Cour du Dragon", "Oil", "16\" x 20\"", false, "courDuDragon", 400, 500);
yumiGM.addImg("Constitution Day", "Oil", "20\" x 24\"", false, "constitutionDay2", 600, 500);
yumiGM.addImg("A Night in Tokyo", "Oil", "16\" x 20\"",false, "tokyoNight", 400, 500);
yumiGM.addImg("El Cid Campeador", "Oil", "18\" x 24\"", true, "campeador", 450, 600);
yumiGM.addImg("Full Bloom in La Jolla Cove", "Oil", "36\" x 48\"", true , "laJollaCove", 600, 450);
yumiGM.addImg("In the Wee Small Hours", "", "", false, "smallHours", 471, 363);
yumiGM.addImg("A Party at Spanish Village", "Oil", "18\" x 24\"", true, "partySpanishVillage", 500, 375);
yumiGM.addImg("A Night in Amsterdam", "Oil", "24\" x 30\"", false, "amsterdamNight", 600, 500);
yumiGM.addImg("Paris Sunset", "Oil", "18\" x 24\"", false, "parisSunset", 600, 450);
yumiGM.addImg("WA - Hope and Peace", "Oil", "22\" x 28\"", true, "WA2", 600, 468);
yumiGM.addImg("The Fish Market", "Oil", "60cm x 90cm", true, "fishmarket", 600, 400);
yumiGM.addImg("Luxembourg Park", "Oil", "16\" x 20\"", true, "luxembourghPark", 500, 400);
yumiGM.addImg("Black Swan", "", "", false, "blackSwan", 600, 480);
yumiGM.addImg("Evening on the Prado 2", "", "", false, "eveningPrado2", 404, 380);
yumiGM.addImg("Party Time at Spanish Village", "", "", false, "partyTime", 555, 432);
yumiGM.addImg("Nutcracker", "Oil", "20\" x 24\"",false, "nutcracker", 417, 500);
yumiGM.addImg("Sunset at La Valencia", "", "", false, "sunsetLaValencia", 482, 375);
yumiGM.addImg("Pacific Beach", "", "", false, "pacificBeach", 478, 398);
yumiGM.addImg("Full Bloom in Balboa Park", "", "", false, "fullBloomBalboaPark", 561, 440);
yumiGM.addImg("Once Upon a Time", "Oil", "24\" x 30\"", true, "uponATime", 400, 500);
yumiGM.addImg("A Peacock", "", "", false, "peacock1", 541, 392);
yumiGM.addImg("Stardust on the Prado", "", "", false, "stardustPrado", 389, 380);
yumiGM.addImg("From the Veranda", "", "", false, "veranda", 450, 342);
yumiGM.addImg("Still Life in Voilet and Blue", "", "", false, "violetBlue", 501, 389);
yumiGM.addImg("Cheer!", "", "", false, "cheer", 315, 397);
yumiGM.addImg("Brunch Time", "", "", false, "brunchTime", 398, 296);
yumiGM.addImg("Quartet","Oil","20\" x 24\"",false,"quartet",500,400);
yumiGM.addImg("Poppies and Candies", "", "", false, "poppiesCandies", 486, 400);
yumiGM.addImg("Morning Light", "", "", false, "morningLight", 544, 396);
yumiGM.addImg("Still Life in Red and Green", "", "", false, "redGreen", 357, 425);
yumiGM.addImg("Evening on the Prado 1", "", "", false, "eveningPrado1", 553, 433);
yumiGM.addImg("Music at La Valencia", "", "", false, "musicLaValencia", 475, 393);
yumiGM.addImg("Night & Day", "", "", false, "nightDay", 300, 397);
yumiGM.addImg("Still Life with a Candle", "", "", false, "stillCandle", 322, 395);
yumiGM.addImg("Sunset Over a Blue Room", "", "", false, "sunsetBlueRoom", 450, 315);
yumiGM.addImg("After the Shower", "", "", false, "afterShower", 400, 500);
yumiGM.addImg("Backstage 2", "Oil", "20\" x 24\"", true, "backstage", 500, 600);
yumiGM.addImg("Balboa Park", "", "", false, "balboaPark", 440, 400);
yumiGM.addImg("Lillingston House", "Oil", "16\" x 20\"", false, "lillingston", 600, 482);
yumiGM.addImg("Orange & Red", "", "", false, "orangeRed", 510, 393);
yumiGM.addImg("April Shower", "", "", false, "aprilShower", 500, 391);
yumiGM.addImg("Still Life in Blue", "", "", false, "stillBlue", 355, 425);
yumiGM.addImg("La Jolla Shore", "", "", false, "laJollaShore", 444, 324);
yumiGM.addImg("Yosemite", "", "", false, "yosemite", 536, 398);
yumiGM.addImg("Salon Coutier", "", "", false, "salonCoutier", 370, 500);
yumiGM.addImg("King Oscars Gate", "", "", false, "kingOscarsGate", 561, 398);
yumiGM.addImg("Serenity", "", "", false, "serenity", 446, 294);
yumiGM.addImg("Pierrettes", "Oil", "8\" x 10\"",false, "pierrette", 320, 400);
yumiGM.addImg("Constitution Day - Oslo, Norway", "", "", false, "constitutionDay1", 318, 436);
yumiGM.addImg("Backstage", "", "", false, "backstage1", 339, 425);
yumiGM.addImg("La Valencia", "", "", false, "laValencia", 474, 396);
yumiGM.addImg("Girlfriends", "", "", false, "girlfriends", 330, 425);
yumiGM.addImg("Sunset", "", "", false, "sunset", 425, 316);
yumiGM.addImg("Black and White", "", "", false, "blackWhite", 310, 417);
yumiGM.addImg("Angels and a Dove", "", "", false, "angels", 554, 400);
yumiGM.addImg("Fantasia", "", "", false, "fantasia", 310, 436);
yumiGM.addImg("Sea At Play", "", "", false, "seaAtPlay", 440, 350);
yumiGM.addImg("DuneFlowers", "", "", false, "duneFlowers", 430, 344);
yumiGM.addImg("Old Barn", "", "", false, "oldBarn", 300, 410);
yumiGM.addImg("Autumn Mist", "", "", false, "autumnMist", 425, 354);
