// JavaScript Document
	//Randomizer Generator
			<!-- Begin
				// Set up the image files to be used.
				var theOrg = new Array() 
				var theOrgURL = new Array()
				var theOrgDescription = new Array()
					// do not change this
					// To add more image files, continue with the
					// pattern below, adding to the array.

					theOrg[0] = '../adbanners/images/o_nsdi.gif'
					theOrg[1] = '../adbanners/images/o_wetland.gif'
					theOrg[2] = '../adbanners/images/o_iteam.gif'
					theOrg[3] = '../adbanners/images/o_geodata.gif'
					theOrg[4] = '../adbanners/images/o_lagic.gif'
					theOrg[5] = '../adbanners/images/o_ldeq_make-a-map.gif'
					theOrg[6] = '../adbanners/images/o_chooseLA.gif'
					theOrg[7] = '../adbanners/images/o_rsgis.gif'
					//theOrg[6] = '../adbanners/images/s_lwf.jpg'
					//theOrg[7] = '../adbanners/images/s_labor.jpg'
					//theOrg[8] = '../adbanners/images/s_rpc.jpg'
					//theOrg[9] = '../adbanners/images/s_infola.jpg'
					//theOrg[10] = '../adbanners/images/s_ldaf.jpg'
					//theOrg[11] = '../adbanners/images/s_lded.jpg'

					theOrgURL[0] = 'http://www.fgdc.gov/nsdi/nsdi.html'
					theOrgURL[1] = 'http://www.americaswetland.com/'
					theOrgURL[2] = 'http://www.fgdc.gov/I-Team/'
					theOrgURL[3] = 'http://www.geoall.net/'
					theOrgURL[4] = 'http://lagic.lsu.edu'
					theOrgURL[5] = 'http://map.ldeq.org'
					theOrgURL[6] = 'http://www.led.state.la.us/choosela/index.html'
					theOrgURL[7] = 'http://www.larsgis.org/'
					//theOrgURL[6] = 'http://www.wlf.state.la.us'
					//theOrgURL[7] = 'http://www.laworks.net'
					//theOrgURL[8] = 'http://www.norpc.org/'
					//theOrgURL[9] = 'http://www.louisiana.gov'
					//theOrgURL[10] = 'http://www.ldaf.state.la.us'
					//theOrgURL[11] = 'http://www.lded.state.la.us/'
					
					theOrgDescription[0] = 'Learn more about the National Spatial Data Infrastructure'
					theOrgDescription[1] = 'Learn more about saving Louisiana Wetlands'
					theOrgDescription[2] = 'Visit the I-Team Home Page'
					theOrgDescription[3] = 'Visit the GeoData Alliance On-Line'
					theOrgDescription[4] = 'Louisiana Geographic Information Center'
					theOrgDescription[5] = 'LDEQ&acute;s Make-A-Map Application'
					theOrgDescription[6] = 'Choose Louisiana'
					theOrgDescription[7] = '22nd Annual Louisiana Remote Sensing & GIS Workshop - 2006'
					//theOrgDescription[6] = 'Louisiana Dept. of Wildlife & Fisheries'
					//theOrgDescription[7] = 'Louisiana Dept. of Labor'
					//theOrgDescription[8] = 'Regional Planning Commission of LA'
					//theOrgDescription[9] = 'Louisiana.Gov'
					//theOrgDescription[10] = 'Louisiana Dept. of Agriculture & Forestry'
					//theOrgDescription[11] = 'Louisiana Dept. of Economic Development' 
					
					//var k = 0
					var orgLen = theOrg.length;
					var OrgBuffer = new Array()
					for (n = 0; n < orgLen; n++){
					   OrgBuffer[n] = new Image()
					   OrgBuffer[n].src = theOrg[n]
					}
					var OrgNum = Math.round(Math.random()*(orgLen-1));
					
					    document.write('<table width="100" height="100" valign="bottom" border="0">');
						document.write('	<tr>');
						document.write('		<td valign="bottom" align="center"><a href="' + theOrgURL[OrgNum] + '" target="_blank" class="orgbanners" ><img src="' + theOrg[OrgNum] + '" width="100" height="100" border="0"></a></td>');  
						document.write('	</tr>');
						document.write('</table>');
					
					
			//  End -->