/*JAVASCRIPT FOR THEMES_PORTALS.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	PRICE RANGE";
cb_catalog[++i]="portals								227	30			";
cb_catalog[++i]="0086	None	Portal Two, 2003	Portals^	monotype	$495 	12 x 17-1/2	blue^white	186	120	699	450";
cb_catalog[++i]="0085	None	Portal One, 2003	Portals^	monotype	$495 	12 x 17-1/2	blue^white	183	120	684	450";
cb_catalog[++i]="0472	None	Portal 12	Portals^	mixed  media	$295 	7 x 12	brown^blue	176	120	662	450";
cb_catalog[++i]="0246	Windows Series-Archive	Window Serenade 3, 2005	Portals^	monoprint	sold	12  x  12	orange^	124	120	463	450";
cb_catalog[++i]="0442	None	Portal 3, 2008	Portals^	mixed  media	$695 	12 x 12	black^yellow	122	120	458	450";
cb_catalog[++i]="0365	Windows Series-Archive	Window Serenade 6, 2007	Portals^	mixed  media	sold	12  x  12	orange^	122	120	457	450";
cb_catalog[++i]="0434	None	Letting It Go 1, 2008	Portals^	mixed  media	$695 	12 x 12	yellow^	122	120	457	450";
cb_catalog[++i]="0380	None	Finding the Window, 2007	Portals^	monoprint	$495 	12 x 12	orange^red	121	120	452	450";
cb_catalog[++i]="0436	None	Letting It Go 3, 2008	Portals^	mixed  media	$695 	12 x 12	yellow^black	121	120	454	450";
cb_catalog[++i]="0437	None	Letting It Go 4, 2008	Portals^	mixed  media	$695 	12 x 12	yellow^black	119	120	445	450";
cb_catalog[++i]="0379	None	Window on Edge, 2007	Portals^	monoprint	$495 	12 x 12	blue^white	118	120	441	450";
cb_catalog[++i]="0435	None	Letting It Go 2, 2008	Portals^	mixed  media	$695 	12 x 12	yellow^black	116	120	434	450";
cb_catalog[++i]="0247	Windows Series-Archive	Window Serenade 4, 2005	Portals^	monoprint	sold	12  x  12	orange^	114	120	429	450";
cb_catalog[++i]="0438	None	Letting It Go 5, 2008	Portals^	mixed  media	$695 	12 x 12	yellow^blue	112	120	418	450";
cb_catalog[++i]="0280	Windows Series-Archive	Window Serenade 5, 2006	Portals^	monoprint	sold	12  x  12	orange^yellow	99	120	370	450";
cb_catalog[++i]="0204	None	Rabbit Hole E x panded 1	Portals^	monoprint	$495 	17 x 14	blue^white	93	120	334	432";
cb_catalog[++i]="0243	None	Window Serenade 2, 2005	Portals^	monoprint	$395 	17-3/4 x 14	black^white	92	120	346	450";
cb_catalog[++i]="0203	None	The Rabbit Hole 1, 2005	Portals^	monoprint	$395 	17-1/2 x 14	blue^white	91	120	326	432";
cb_catalog[++i]="0242	None	Window Serenade 1, 2005	Portals^	monoprint	$395 	17-3/4 x 14	orange^white	91	120	340	450";
cb_catalog[++i]="0200	None	Heading Home 6	Portals^	monoprint	$395 	17 x 14	blue^white	90	120	323	432";
cb_catalog[++i]="0199	None	Heading Home 8, 2005	Portals^	monoprint	$395 	17 x 14	blue^orange	89	120	321	432";
cb_catalog[++i]="0454	None	Portal 10, 2008	Portals^	mixed  media	$395 	12 x 9	green^red	89	120	334	450";
cb_catalog[++i]="0205	None	Rabbit Hole E x panded 2	Portals^	monoprint	$495 	17 x 14	blue^orange	86	120	309	432";
cb_catalog[++i]="0409	None	Portal, 2007	Portals^	mixed  media	$295 	11-1/2 x 8-1/2	blue^yellow	84	120	316	450";
cb_catalog[++i]="0471B	None	Portal 11	Portals^	mixed  media	$295 	11 x 7	black^blue	83	120	312	450";
cb_catalog[++i]="0183	Windows Series	Keeping the Light On #2, 2005	Portals^	monoprint	$595 	17-1/2 x 14	blue^purple	82	120	279	432";
cb_catalog[++i]="0185	Windows Series	Keeping the Light On #5, 2005	Portals^	monoprint	$495 	17-1/2 x 121	black^purple	81	120	271	432";
cb_catalog[++i]="0182	Windows Series	Keeping the Light On #1, 2005	Portals^	monoprint	$595 	17-1/2 x 12	blue^purple	79	120	264	432";





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="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_portals_enlarge.html?row="+i, "enlargements", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=825px,height=700px, left=10px");	 
							OpenWin.focus();
							}





