/*JAVASCRIPT FOR INNER_PORTF_PROMISE OF SUMMER.HTML*/

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]="521	Promise of Summer	The Promise of Summer 9, 2009	Uncategorized	mixed media/monoprint	sold	14 x 17	blue^white	94	120	353	450";
cb_catalog[++i]="529	Promise of Summer	The Promise of Summer 17, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	blue^yellow	101	120	378	450";
cb_catalog[++i]="528	Promise of Summer	The Promise of Summer 16, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	blue^yellow	103	120	385	450";
cb_catalog[++i]="520	Promise of Summer	The Promise of Summer 8, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	blue^yellow	113	120	422	450";
cb_catalog[++i]="517	Promise of Summer	The Promise of Summer 5, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	orange^blue	117	120	439	450";
cb_catalog[++i]="522	Promise of Summer	The Promise of Summer 10, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	yellow^orange	117	120	440	450";
cb_catalog[++i]="525	Promise of Summer	The Promise of Summer 13, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	yellow^blue	117	120	440	450";
cb_catalog[++i]="530	Promise of Summer	The Promise of Summer 18, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	red^blue	117	120	440	450";
cb_catalog[++i]="515	Promise of Summer	The Promise of Summer 3, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	orange^blue	118	120	443	450";
cb_catalog[++i]="519	Promise of Summer	The Promise of Summer 7, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	blue^white	118	120	443	450";
cb_catalog[++i]="523	Promise of Summer	The Promise of Summer 11, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	green^orange	118	120	444	450";
cb_catalog[++i]="526	Promise of Summer	The Promise of Summer 14, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	orange^green	118	120	444	450";
cb_catalog[++i]="527	Promise of Summer	The Promise of Summer 15, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	blue^yellow	118	120	444	450";
cb_catalog[++i]="513	Promise of Summer	The Promise of Summer 1, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	orange^blue	119	120	448	450";
cb_catalog[++i]="518	Promise of Summer	The Promise of Summer 6, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	blue^white	119	120	447	450";
cb_catalog[++i]="514	Promise of Summer	The Promise of Summer 2, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	orange^blue	120	120	450	450";
cb_catalog[++i]="516	Promise of Summer	The Promise of Summer 4, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	white^blue	120	120	449	450";
cb_catalog[++i]="524	Promise of Summer	The Promise of Summer 12, 2009	Uncategorized	mixed media/monoprint	$695 	12 x 12	yellow^blue	120	120	452	450";					




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][2]+'"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_promise_enlarge.html?row="+i, "enlargements", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=825px,height=700px, left=10px");	 
							OpenWin.focus();
							}





