
/*THIS IS THE EXTERNAL JAVASCRIPT PAGE FOR THE EVOLUTION SERIES*/

cb_catalog=new Array(); i=-1;
cb_catalog[++i]="CODE	CATEGORY	TITLE	THEME	TYPE	PRICE	SIZE	COLOR	t-width	t-height	f-width	f-height";
cb_catalog[++i]="0186	Evolution Series	Inside Storyline #1, 2005	Surroundings^	monotype	$595 	12 x 17-1/2	orange^	188	120	706	450";
cb_catalog[++i]="0103	Evolution Series	Unintended Consequences 6, 2001/2003	Archives	monoprint	sold	7  x  11	brown^	187	120	734	450";
cb_catalog[++i]="0071	Evolution Series	Unintended Consequences 3, 2003	Archives	mixed  media	sold	7  x  10-3/4	blue^yellow	186	120	731	450";
cb_catalog[++i]="0069	Evolution Series	Unintended Consequences 1, 2003	Portals^	mixed  media	$395 	7 x 10-3/4	white^	185	120	727	450";
cb_catalog[++i]="0073	Evolution Series	Unintended Consequences, 2003	Archives	monoprint	sold	7  x  10-3/4	green^yellow	185	120	727	450";
cb_catalog[++i]="0104	Evolution Series	Unintended Consequences #9, 2001/2003	Portals^	monoprint	$395 	7 x 11	gray^red	185	120	728	450";
cb_catalog[++i]="0101	Evolution Series	Unintended Consequences #8, 2001/2003	Portals^	monoprint	$295 	6-3/4 x 11	green^	184	120	721	450";
cb_catalog[++i]="0070	Evolution Series	Unintended Consequences 2, 2003	Portals^	mixed  media	$295 	7 x 10-3/4	brown^green	183	120	717	450";
cb_catalog[++i]="0102	Evolution Series	Unintended Consequences #7, 2001/2003	Portals^	monoprint	$295 	7 x 11	black^green	183	120	721	450";
cb_catalog[++i]="0397	Evolution Series	Evolutionary Leap 8, 2007	Origins^	mixed  media	$595 	17 x 12	gray^yellow	123	120	335	450";
cb_catalog[++i]="0383	Evolution Series	Evolutionary Leap 1, 2007	Origins^	mixed  media	$695 	12 x 12	green^yellow	121	120	453	450";
cb_catalog[++i]="0396	Evolution Series	Evolutionary Leap 7, 2007	Origins^	mixed  media	$595 	17 x 12	gray^yellow	120	120	327	450";
cb_catalog[++i]="0476	Evolution Series	Evoluntionary Leap 10, 2008	Origins^	mixed  media	$595 	12 x 12	yellow^black	120	120	449	450";
cb_catalog[++i]="0388	Evolution Series	Evolutionary Leap 9, 2007	Origins^	mixed  media	sold	12  x  12	orange^purple	119	120	448	450";
cb_catalog[++i]="0385	Evolution Series	Evolutionary Leap 3, 2007	Origins^	mixed  media	$695 	12 x 12	blue^yellow	117	120	439	450";
cb_catalog[++i]="0384	Evolution Series	Evolutionary Leap 2, 2007	Origins^	mixed  media	sold	12  x  12	blue^	116	120	434	450";
cb_catalog[++i]="0386	Evolution Series	Evolutionary Leap 4, 2007	Origins^	mixed  media	$695 	12 x 12	blue^yellow	116	120	436	450";
cb_catalog[++i]="0276	Evolution Series	Seeds of Transformation 4, 2006	Origins	mixed  media	$795 	17-1/2 x 12	green^yellow	84	120	314	450";
cb_catalog[++i]="0387	Evolution Series	Evolutionary Leap 5, 2007	Origins^	mixed  media	$695 	17-1/2 x 12	purple^orange	83	120	311	450";
cb_catalog[++i]="0275	Evolution Series	Seeds of Transformation 3, 2006	Origins	mixed  media	$795 	17-1/2 x 12	blue^yellow	82	120	306	450";
cb_catalog[++i]="0187	Evolution Series	Inside Storyline #4, 2005	Surroundings^	monotype	$795 	17-1/2 x 12	orange^white	81	120	292	432";
cb_catalog[++i]="0072	Evolution Series	Unintended Consequences 4, 2003	Portals^	monoprint	$395 	10-3/4 x 7	brown^white	80	120	284	450";
cb_catalog[++i]="0189	Evolution Series	Inside Storyline #3, 2005	Surroundings^	monotype	$395 	17-1/2 x 12	black^brown	80	120	289	432";
cb_catalog[++i]="0076	Evolution Series	Seeds of Transformation, 2003	Origins^	collagraph	sold	16  x  7-1/2	blue^orange	62	120	193	432";
cb_catalog[++i]="0074	Evolution Series	Chrystalis in the Hollow, 2003	Origins^	mixed  media	$495 	16 x 7-1/2	brown^white	56	120	200	432";
cb_catalog[++i]="0079	Evolution Series	Hook, Line and Maple Sugar #2, 2003	Origins^	collograph	$695 	7-1/2 x 16	blue^orange	56	120	805	375";
cb_catalog[++i]="0078	Evolution Series	Hook, Line and Maple Sugar #1, 2003	Origins^	collograph	$695 	7-1/2 x 16	blue^orange	55	120	802	370";

/*9-15-2010*/




			



for (i=0;i<cb_catalog.length;++i) {  //THIS SPLITS THE TWO-DIMENSIONAL ARRAY AT THE TABS
				cb_catalog[i]=cb_catalog[i].split("\t");
}
	function make_thumb_table() { //THIS CREATES A NESTED TABLE WITHIN THE 2ND TABLE, 1ST ROW, 1ST COLUMN FOR THE IMAGES GALLERY
							thumbs='<table class="gallery_table" cellspacing="5px">';
							cellcount=0;
							for (i=1;i<cb_catalog.length;++i) {
								if (cellcount%3==0) {
									thumbs+='<tr>';
								}
 
								thumbs+='<td class="image_placement"><a href="javascript:open_Enlargement_Window('+i+');"><img class="series_image_border" alt="'+cb_catalog[i][1]+'"height="'+cb_catalog[i][9]+'" width="'+cb_catalog[i][8]+'" src="cb_thumb_images/'+cb_catalog[i][0]+'.jpg" id="cell_'+i+'" style="position: relative; left: 0px; top: 0px" /></a></td>'; //MLN REMOVED THE STYLE PORTION OF THIS STATEMENT, BUT I PUT IT BACK IN SO THE ANIMATION WOULD WORK
								++cellcount;
							if (cellcount%3==0) {	
								thumbs+='</tr>';	
							}
							}
							thumbs+='</table>';
							document.getElementById('gallery').innerHTML=thumbs;
						 
							
								
						}
						
						function open_Enlargement_Window(i) {
						    OpenWin = window.open("cb_evolution_enlarge.html?row="+i, "enlargements", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=1080px,height=700px, left=10px");	 
							OpenWin.focus();
							}





