/**
 * @author jhoward
 * This is a demo of the master-EFH list that has:/ REGION/ FMC / EFH DESIGNATION/ SPECIES / LINK / PDF /
 * for all regions.  This arrary is to be parsed by the EFH_DataList.html & EFH_DataList2.html.
 *
 *  Imported the CSVs into Notepad++ and did a Find/Replace on the commmas (,) swapping to (;) then
 *  the arrays were create with this tool - http://www.creativyst.com/cgi-bin/Prod/17/eg/csv2js.pl
 *
 */
function fmcSelect(tmpvar, tmpcode){
    var menucode = ""
	//legend
	menucode +='<table align="center" border="1"><tr><td class="legend">';
	menucode +='<center><b>Symbol Legend</center></b>';
	menucode +='<img img src="../images/greencheck.gif"  alt="GIS data is available including distinct layers for lifestages"><span class="greenLS">+LS</span> -GIS data exists including distinct layers for species lifestages<br>';
	menucode +='<img img src="../images/greencheck.gif"  alt="GIS data is available including distinct layers for lifestages"> -GIS data exists for the species/management unit<br>';
	menucode +='<img src="../images/graycheck_small.gif" alt="Species is represented in a GIS layer for the FMP group"> - GIS data exists for a broader management grouping which includes the species<br>';
	menucode +='<img src="../images/cancel_1.gif" alt="GIS data is not available"> - GIS data is not currently available<br>';
	menucode +='<hr class="quality_spacer">';
	menucode +='<img border="none" src="../images/yellowcheck.gif"> -GIS data accurately represents the EFH or HAPC designation (links to specific caveats)<br>';
	menucode +='<img border="none" src="../images/warning.gif"> -GIS data may not completely or accurately represent the EFH or HAPC designation (links to specific caveats)<br>';
	menucode +='<hr class="quality_spacer">';
	menucode +='<img border="none" src="../images/ie2.jpg"> -Link to a Webpage<br>'
	menucode +='<img border="none" src="../images/acrobat.jpg"> -Link to a PDF document<br>'
	menucode +='<img border="none" src="../images/download.gif"> -Link to Webpage where data is available for download<br>'
	menucode +='&nbsp;-  &nbsp;-Metadata or data download are not currently available';
	
	menucode +='</td></tr></table>'
	//var loader = '<br><br><br><table height="100px" class="inventory"><tr><td><img src="../images/ajax-loader.gif">Loading Data</td></tr></table>'
	//alert(loader)
	//document.getElementById("inventory").innerHTML = loader //'<img src="../images/ajax-loader.gif">Loading Data';
	//alert(akefh1)

   // alert(tmpvar)
    var RegionArray = new Array();
    
	if (tmpvar == "NEFMC") {
		RegionArray = INFONE.concat(INFOMA);
	}else if(tmpvar == "NPFMC") {
		RegionArray = INFONP;
	}else if(tmpvar == "NWFMC") {
		RegionArray = INFONW;
	}else if(tmpvar == "HMS") {
		RegionArray = INFOHM;
	}else if(tmpvar == "WPFMC") {
		RegionArray = INFOPI;
	}else if(tmpvar == "SEFMC") {
		RegionArray = INFOSA;
	}else if(tmpvar == "GMFMC") {
		RegionArray = INFOGM;
	}else if(tmpvar == "CBFMC") {
		RegionArray = INFOCA;
	}
       

/*
0 - council
1 - species name
2 - FMP
3 - status data
4 - useage
5 - FMP
6 - link
7 - link
8 - page
9 - EFH Hapc? efh=Y hapc=n
10 - Metadata Y or N
11 - metadata link
12 - data caveat blurb
13 - data caveat blurb for grouped data
14 - download link
*/

//alert(RegionArray.length)


	  var split2Last = new Array(); 
	   
	    for (i = 0; i < RegionArray.length; i++) {
            var split2 = RegionArray[i].split(";")
			//this checks if the FMP has changed if so it adds a new header and starts a new table
			if(split2Last[5]!= split2[5]){
				menucode += '</table>';
				//alert(split2[9])
				//this checks if the council has changed if so it breaks the table and adds a new council header it distinguishes between FMP and HAPCs in heading
				if (split2[0] == "South Atlantic") {
					var splitvar = "http://www.safmc.net";
				}
				else 
					if (split2[0] == "Species co-managed by South Atlantic-Gulf of Mexico" || split2[0] == "Gulf of Mexico") {
						var splitvar = "http://www.gulfcouncil.org";
					}
				else 
					if (split2[0] == "Caribbean") {
						var splitvar = "http://www.caribbeanfmc.com";
					}		
				else 
					if (split2[0] == "Western Pacific") {
						var splitvar = "http://www.wpcouncil.org";
					}		
				else 
					if (split2[0] == "Secretarial") {
						var splitvar = "http://www.nmfs.noaa.gov/sfa/hms/";
					}
				else 
					if (split2[0] == "New England") {
						var splitvar = "http://www.nefmc.org";
					}
				else 
					if (split2[0] == "Mid-Atlantic") {
						var splitvar = "http://www.mafmc.org";
					}
				else 
					if (split2[0] == "Pacific") {
						var splitvar = "http://www.pcouncil.org";
					}												
				else 
					if (split2[0] == "North Pacific") {
						var splitvar = "http://www.fakr.noaa.gov/npfmc/";
					}	
				
				if(split2Last[9]!= split2[9]&& split2[9]=="Y"){ 
					menucode += '<br><br><center><hr class="quality_spacer"><span class="EFh_title">'+split2[0]+'&nbsp;Fishery Management Council - HAPC Data</span><br><a class="councilLink" target="_blank" href="'+splitvar+'"><img border="none" src="../images/ie2.jpg">&nbsp;Council homepage</a><hr class="quality_spacer"></center>'			
				}else if (split2Last[0]!= split2[0]){
					menucode += '<br><br><center><hr class="quality_spacer"><span class="EFh_title">'+split2[0]+'&nbsp;Fishery Management Council - EFH Data</span><br><a class="councilLink" target="_blank" href="'+splitvar+'"><img border="none" src="../images/ie2.jpg">&nbsp;Council homepage</a><hr class="quality_spacer"></center>'
				}
				if (split2[9] == "Y") {
					menucode += '<br><b><span class="FMP_title">' + split2[5] + '</span>';
				//Custom AK query for FMP hyperlinked title		
				}
				else if (split2[0] == "Alaska") {
						menucode += '<br><span class="FMP_title">' + split2[5] + '&nbsp;FMP -</span>&nbsp;<a class="councilLink" target="_blank" href="' + split2[10] + '"><img border="none" src="../images/acrobat.jpg">&nbsp;Full FMP document</a></center>';
				}else if (split2[5] == "") {
					menucode += '<br><b><center>&nbsp;</center></b>';
				
				}else{
					menucode += '<br><span class="FMP_title">'+split2[5]+'&nbsp;FMP</span>';
				}
				menucode += '<table cellspacing="0" cellpadding="5" bgcolor="white" class="inventory">';
				if (split2[9]=="Y"){
		        	menucode += '<td class="inv3">HAPC</td>';
				}else{
		        	menucode += '<td class="inv3">Stock</td>';
				}
		        menucode += '<td class="inv3">GIS Data<\/td>';
		        menucode += '<td class="inv3">Link to Data Caveats<\/strong><\/td>'; 
				if (split2[9]=="Y"){
		       	 	menucode += '<td class="inv3">Link to HAPC Designation<\/td>';
				}else{
					menucode += '<td class="inv3">Link to EFH Text<\/td>';
				}
		        menucode += '<td class="inv3">Metadata<\/td>';
				menucode += '<td class="inv3">Data Download<\/td><\/tr>';		
			}
		
			//this puts a group category in the table
			if(split2[3] == "SM" && (split2Last[5]!= split2[5]) ){
                menucode += '<tr><td class="Species"><b>' + split2[5] + '&nbsp;(All Species)</b></td>';
                menucode += '<td class="inv2" align="center"><img src="../images/greencheck.gif" alt="GIS data is available"></td>';
				if (split2[0] == "Gulf of Mexico" || split2[0] == "South Atlantic" || split2[0] == "Caribbean" ){
					if (split2[1]== "Golden Crab" || split2[1]== "Fire Corals"){
						menucode += '<td class="inv2" align="center"><a href="javascript:helpwindow(\''+split2[5]+'&nbsp(All Species)\',akefh1,\'warning\')"><img border="none" src="../images/warning.gif"></a></td>';
					}else if (split2[1]== "White Shrimp"){
						menucode += '<td class="inv2" align="center"><a href="javascript:helpwindow(\''+split2[5]+'&nbsp(All Species)\',habitatEFH,\'warning\')"><img border="none" src="../images/warning.gif"></a></td>';
					}else{
						menucode += '<td class="inv2" align="center"><a href="javascript:helpwindow(\''+split2[5]+'&nbsp(All Species)\',habitatCoastlineEFH,\'warning\')"><img border="none" src="../images/warning.gif"></a></td>';
					}
				}else{
                	menucode += '<td class="inv2" align="center"><a href="javascript:helpwindow(\''+split2[5]+'&nbsp(All Species)\','+split2[13]+',\'warning\')"><img border="none" src="../images/warning.gif"></a></td>';
				}
				var linkvar = split2[7].search(/.htm/i);
                if (split2[7] == '') {
                    menucode += '<td class="inv2">-';
                }else if (linkvar == -1 && split2[7] != '') {     
                        menucode += '<td class="inv2" align="center"><a align="center" target="_blank" href="' + split2[7] + '' + "#page=" + '' + split2[8] + '"><img border="none" src="../images/acrobat.jpg"></a>';    
                }else {            
                        menucode += '<td class="inv2" align="center"><a align="center" target="_blank" href="' + split2[7] + '"><img border="none" src="../images/ie2.jpg"></a>';
                }
				
				
				if (split2[10] == "Y" ) {
                    menucode += '<td class="inv2" align="center"><a target="_blank" align="center" href="' + split2[11] + '">Metadata</a></td>';
                
				}else if (split2[3] == "N" || split2[3] == "SM"){
                    menucode += '<td class="inv2" align="center">-<\/td>';
				}else{
                    menucode += '<td class="inv2" align="center">-<\/td>';
			
				
				//CUSTOM PACIFIC GROUP DOWNLOAD CHECK
                }if (split2[5]=="Pacific Coast Groundfish"){
					menucode += '<td class="inv2" align="center"><a target="_blank" align="center" href="http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html"><img border="none" src="../images/download.gif"><\/a><\/td><\/tr>';
				
				//CUSTOM SOUTH ATLANTIC GROUP DOWNLOAD CHECK
                }if (split2[0]=="South Atlantic" && split2[3]=="SM"){
					menucode += '<td class="inv2" align="center"><a target="_blank" align="center" href="http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm"><img border="none" src="../images/download.gif"><\/a><\/td><\/tr>';
				
				//CUSTOM GULF OF MEXICO GROUP DOWNLOAD CHECK
				}if (split2[0] == "Gulf of Mexico" && split2[3] == "SM") {
					menucode += '<td class="inv2" align="center">-<\/td><\/tr>';
			
				//CUSTOM CARIBBEAN GROUP DOWNLOAD CHECK
				}if (split2[0] == "Caribbean" && split2[3] == "SM") {
					menucode += '<td class="inv2" align="center">-<\/td><\/tr>';
				
				}
				else 
					if (split2[0] == "Gulf of Mexico" && split2[3] == "") {
						menucode += '<td class="inv2" align="center">-<\/td><\/tr>';
				}
					
			}
                menucode += '<tr><td class="Species">' + split2[1] + '<\/td>';
                //STATUS graphic switch 
                if (split2[3] == "Y") {
                    menucode += '<td class="inv2" align="center"><img src="../images/greencheck.gif" alt="GIS data is available">';
                }else if (split2[3] == "N") {
                    menucode += '<td class="inv2" align="center"><img src="../images/cancel_1.gif" alt="GIS data is not available">';
                }else if (split2[3] == "SM") {
                    menucode += '<td class="inv2" align="center"><img src="../images/graycheck_small.gif" alt="Species is represented in a GIS layer for the FMP group">';
                }else if (split2[3] == "LS") {
                    menucode += '<td class="invLS" align="center"><img img src="../images/greencheck.gif"  alt="GIS data is available including distinct layers for lifestages">+LS';
               	}
			    //USEAGE GRAPHIC
                if (split2[4] == "0" && (split2[3] == "Y" || split2[3] == "SM" || split2[3] == "LS")) {
                    menucode += '<td class="inv2" align="center"><a href="javascript:helpwindow(\''+split2[1]+'\','+split2[12]+',\'warning\')"><img border="none" src="../images/warning.gif"><\/a><\/td>';
                }else if (split2[4] == "1" && (split2[3] == "Y" || split2[3] == "SM" || split2[3] == "LS")){
                    menucode += '<td class="inv2" align="center"><a href="javascript:helpwindow(\''+split2[1]+'\','+split2[12]+',\'check\')"><img border="none" src="../images/yellowcheck.gif"><\/a><\/td>';
                }else{
					 menucode += '<td class="inv2" align="center">-';
				}
               // menucode += '<td class="inv2">' + split2[5] + '<\/td>';
				//menucode += '<td class="inv2"><a href="' + split2[6] + '">' + split2[0] + '<\/a><\/td>';
                //EFH LINK graphic switch
                var linkvar = split2[7].search(/.htm/i);
                if (split2[7] == '') {
                    menucode += '<td class="inv2" align="center">-';
                }else if (linkvar == -1 && split2[7] != '') {     
					if (tmpvar == "HMS") {
						menucode += '<td class="inv2" align="center"><a align="center" href="javascript:hmsAlert(' + split2[8] + ')"><img border="none" src="../images/acrobat.jpg"><\/a>';
						
						}else {
						menucode += '<td class="inv2" align="center"><a align="center" target="_blank" href="' + split2[7] + '' + "#page=" + '' + split2[8] + '"><img border="none" src="../images/acrobat.jpg"><\/a>';
					}
			    }else {            
                        menucode += '<td class="inv2" align="center"><a align="center" target="_blank" href="' + split2[7] + '"><img border="none" src="../images/ie2.jpg"><\/a>';
                }
				
                //METADATA CHECK
                if (split2[10] == "Y" && split2[3] != "SM") {
                    menucode += '<td class="inv2" align="center"><a target="_blank" align="center" href="' + split2[11] + '">Metadata<\/a><\/td>';
                }else if (split2[3] == "N" || split2[3] == "SM" && split2[10] == "N"){
					
                    menucode += '<td class="inv2" align="center">-<\/td>';
			    }else if (split2[3] == "N" || split2[3] == "SM"){
                    menucode += '<td class="inv2" align="center">-<\/td>';
				}else{
                    menucode += '<td class="inv2" align="center">-<\/td>';
                }

				// DOWNLOAD LINK CHECK
				if (split2[3] == "N"){
                	menucode += '<td class="inv2" align="center">-<\/td><\/tr>';
				}else if (split2[14] == '' &&  split2[3] == "SM") {
					menucode += '<td class="inv2" align="center">-<\/td><\/tr>';
		
				}else if (split2[14] == ''){
					menucode += '<td class="inv2" align="center">-<\/td><\/tr>';
					
				}else if (split2[3] == "SM" && split2[0] == 'South Atlantic'){
					menucode += '<td class="inv2" align="center">-<\/td><\/tr>';	
				
				}else {
					menucode += '<td class="inv2" align="center"><a target="_blank" align="center" href="' + split2[14] + '"><img border="none" src="../images/download.gif"><\/a><\/td><\/tr>';		
				}
				split2Last = split2;
      }//end for
	menucode += '<\/table>';
    document.getElementById("inventory").innerHTML = menucode;
    
}//end fmcSelect           
            
/*
 
 

//PACIFIC ISLANDS DATA ARRAY 

/*
0 - council
1 - species name
2 - FMP
3 - status data
4 - ?
5 - FMP
6 - link
7 - link
8 - page
9 - EFH Hapc? efh=Y hapc=n
10 - Metadata Y or N
11 - Meta Link
12 - Caveat 1
13 - Caveat 2
14 - Download Link
*/


var lsz = 94;

var INFOPI = Array([lsz]);

INFOPI[0] = "Western Pacific;Skipjack Tuna - Central Western Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[1] = "Western Pacific;Yellowfin Tuna - Central Western Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[2] = "Western Pacific;Striped Marlin - Central Western Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[3] = "Western Pacific;Albacore - South Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[4] = "Western Pacific;Indo-Pacific Blue Marlin - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[5] = "Western Pacific;Shortbill Spearfish - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[6] = "Western Pacific;Wahoo - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[7] = "Western Pacific;Moonfish (Opah) - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[8] = "Western Pacific;Black Marlin - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[9] = "Western Pacific;Pomfrets - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[10] = "Western Pacific;Sailfish - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[11] = "Western Pacific;Longfin Mako Shark - North Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[12] = "Western Pacific;Silky Shark - Tropical Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[13] = "Western Pacific;Oceanic Whitetip Shark - Tropical Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[14] = "Western Pacific;Salmon Shark - North Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[15] = "Western Pacific;Other Tuna Relatives - Tropical Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[16] = "Western Pacific;Oilfish Family - Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[17] = "Western Pacific;Kawakawa - Tropical Pacific;FEP for Pacific Pelagic Fisheries of the Western Pacific Region (2005);N;0;Pelagic Fisheries of the Western Pacific Region;http://www.wpcouncil.org/pelagic.htm;http://www.wpcouncil.org/documents/FEPs/PacificPelagicFEP/December12005PelagicFEP.pdf;130;N;N;;;;";

INFOPI[18] = "Western Pacific;Bottomfish Multi-Species Complex - Hawaiian Archipelago;Final Environmental Impact Statement Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region (2005);N;0;Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/bottomfish/Documents/FEIS2005/Chapter3.pdf;65;N;N;;;;";

INFOPI[19] = "Western Pacific;Bottomfish Multi-Species Complex - American Samoa;Final Environmental Impact Statement Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region (2005);N;0;Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/bottomfish/Documents/FEIS2005/Chapter3.pdf;65;N;N;;;;";

INFOPI[20] = "Western Pacific;Bottomfish Multi-Species Complex - Guam;Final Environmental Impact Statement Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region (2005);N;0;Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/bottomfish/Documents/FEIS2005/Chapter3.pdf;65;N;N;;;;";

INFOPI[21] = "Western Pacific;Seamount Groundfish Complex - Hancock Seamount;Final Environmental Impact Statement Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region (2005);N;0;Bottomfish and Seamount Groundfish Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/bottomfish/Documents/FEIS2005/Chapter3.pdf;65;N;N;;;;";

INFOPI[22] = "Western Pacific;Coral Reef Ecosystem Multi-Species Complex - Hawaiian Archipelago;FMP (2005);N;0;Coral Reef Ecosystems of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/coralreef/Documents/FMP/Chapter6-8.pdf;4;N;N;;;;";

INFOPI[23] = "Western Pacific;Bigeye Scad - Hawaiian Archipelago;FMP (2005);N;0;Coral Reef Ecosystems of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/coralreef/Documents/FMP/Chapter6-8.pdf;4;N;N;;;;";

INFOPI[24] = "Western Pacific;Coral Reef Ecosystem Multi-Species Complex - American Samoa;FMP (2005);N;0;Coral Reef Ecosystems of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/coralreef/Documents/FMP/Chapter6-8.pdf;4;N;N;;;;";

INFOPI[25] = "Western Pacific;Coral Reef Ecosystem Multi-Species Complex - Northern Mariana Islands;FMP (2005);N;0;Coral Reef Ecosystems of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/coralreef/Documents/FMP/Chapter6-8.pdf;4;N;N;;;;";

INFOPI[26] = "Western Pacific;Coral Reef Ecosystem Multi-Species Complex - Guam;FMP (2005);N;0;Coral Reef Ecosystems of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/coralreef/Documents/FMP/Chapter6-8.pdf;4;N;N;;;;";

INFOPI[27] = "Western Pacific;Coral Reef Ecosystem Multi-Species Complex - Pacific remote island areas;FMP (2005);N;0;Coral Reef Ecosystems of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/coralreef/Documents/FMP/Chapter6-8.pdf;4;N;N;;;;";

INFOPI[28] = "Western Pacific;Mackerel Scad - Hawaiian Archipelago;FMP (2005);N;0;Coral Reef Ecosystems of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/coralreef/Documents/FMP/Chapter6-8.pdf;4;N;N;;;;";

INFOPI[29] = "Western Pacific;Lobster Complex - Northwestern Hawaiian Islands;;N;0;Crustaceans Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;;;N;N;;;;";

INFOPI[30] = "Western Pacific;Lobster Complex - other than Northwestern Hawaiian Islands;;N;0;Crustaceans Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;;;N;N;;;;";

INFOPI[31] = "Western Pacific;Kona Crab - Hawaiian Archipelago;;N;0;Crustaceans Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;;;N;N;;;;";

INFOPI[32] = "Western Pacific;Precious Corals Multi-Species Complex - Makapuu Bed;;N;0;Precious Corals Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/precious/Documents/FMP/Final%20Reg%20Amdt%20-%20Black%20Coral%20Min%20Size%20_27-Jun-2007_%20Sent%20to%20PIRO.pdf;26;N;N;;;;";

INFOPI[33] = "Western Pacific;Precious Corals Multi-Species Complex - Conditional Beds;;N;0;Precious Corals Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/precious/Documents/FMP/Final%20Reg%20Amdt%20-%20Black%20Coral%20Min%20Size%20_27-Jun-2007_%20Sent%20to%20PIRO.pdf;26;N;N;;;;";

INFOPI[34] = "Western Pacific;Black Coral - Auau Bed;;N;0;Precious Corals Fisheries of the Western Pacific Region;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/precious/Documents/FMP/Final%20Reg%20Amdt%20-%20Black%20Coral%20Min%20Size%20_27-Jun-2007_%20Sent%20to%20PIRO.pdf;26;N;N;;;;";

INFOPI[35] = "Western Pacific;Bottomfish;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[36] = "Western Pacific;Crustaceans;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[37] = "Western Pacific;Pelagics;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[38] = "Western Pacific;Precious Coral-Makapuu bed;;N;0;;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/precious/Documents/FMP/Final%20Reg%20Amdt%20-%20Black%20Coral%20Min%20Size%20_27-Jun-2007_%20Sent%20to%20PIRO.pdf;27;Y;N;;;;";

INFOPI[39] = "Western Pacific;Precious Coral-Wespac bed;;N;0;;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/precious/Documents/FMP/Final%20Reg%20Amdt%20-%20Black%20Coral%20Min%20Size%20_27-Jun-2007_%20Sent%20to%20PIRO.pdf;27;Y;N;;;;";

INFOPI[40] = "Western Pacific;Precious Coral-Brooks Banks bed;;N;0;;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/precious/Documents/FMP/Final%20Reg%20Amdt%20-%20Black%20Coral%20Min%20Size%20_27-Jun-2007_%20Sent%20to%20PIRO.pdf;27;Y;N;;;;";

INFOPI[41] = "Western Pacific;Precious Coral-Auau Channel;;N;0;;http://www.wpcouncil.org/index.html;http://www.wpcouncil.org/precious/Documents/FMP/Final%20Reg%20Amdt%20-%20Black%20Coral%20Min%20Size%20_27-Jun-2007_%20Sent%20to%20PIRO.pdf;27;Y;N;;;;";

INFOPI[42] = "Western Pacific;NWHI HAPC 1;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[43] = "Western Pacific;NWHI Laysan;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[44] = "Western Pacific;NWHI Midway;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[45] = "Western Pacific;NWHI FFS;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[46] = "Western Pacific;Kaula Rock;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[47] = "Western Pacific;Niihau;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[48] = "Western Pacific;Kauai;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[49] = "Western Pacific;Oahu Pupukea;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[50] = "Western Pacific;Oahu Shark\'s Cove;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[51] = "Western Pacific;Oahu Waikiki;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[52] = "Western Pacific;Oahu Makapuu Head/Tide Pool Reef Area;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[53] = "Western Pacific;Oahu Kaneohe Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[54] = "Western Pacific;Oahu Kaena Point;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[55] = "Western Pacific;Oahu Kahe Reef;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[56] = "Western Pacific;Maui Molokini;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[57] = "Western Pacific;Maui Olowalo Reef Area;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[58] = "Western Pacific;Maui Honolua-Mokuleia Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[59] = "Western Pacific;Maui Ahihiki Kinau Natural Area Reserve;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[60] = "Western Pacific;Molokai;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[61] = "Western Pacific;Lanai Halope Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[62] = "Western Pacific;Lanai Manele Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[63] = "Western Pacific;Lanai Five Needles;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[64] = "Western Pacific;Hawaii Lapakahi Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[65] = "Western Pacific;Hawaii Pauko Bay & Reef;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[66] = "Western Pacific;Hawaii Kealakekua;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[67] = "Western Pacific;Hawaii Waialea Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[68] = "Western Pacific;Hawaii Kawaihae Harbor-Old Kona Airport;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[69] = "Western Pacific;Hawaii All long term research sites;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[70] = "Western Pacific;Hawaii All CRAMP sites;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[71] = "Western Pacific;Fagatele Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[72] = "Western Pacific;Samoa Larsen Bay;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[73] = "Western Pacific;Samoa Steps Point;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[74] = "Western Pacific;Samoa Pago Pago;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[75] = "Western Pacific;Samoa Aunuu Island;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[76] = "Western Pacific;Samoa Rose Atoll;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[77] = "Western Pacific;Samoa South Coast Ofu;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[78] = "Western Pacific;Samoa Aua Transect;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[79] = "Western Pacific;Samoa Tua Island;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[80] = "Western Pacific;Guam Cocos Lagoon;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[81] = "Western Pacific;Guam Orote Point;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[82] = "Western Pacific;Guam Haputo Point;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[83] = "Western Pacific;Guam Ritidian Point;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[84] = "Western Pacific;Guam Jade Shoals;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[85] = "Western Pacific;CNMI Saipan;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[86] = "Western Pacific;Wake Atoll;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[87] = "Western Pacific;Johnson Atoll;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[88] = "Western Pacific;Palmyra Atoll;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[89] = "Western Pacific;Kingman Reef;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[90] = "Western Pacific;Howard Island;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[91] = "Western Pacific;Baker Island;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";

INFOPI[92] = "Western Pacific;Jarvis Island;;N;0;;http://www.wpcouncil.org/index.html;;;Y;N;;;;";


// CARIBBEAN DATA ARRAY



var lsz = 70;

var INFOCA = Array([lsz]);

INFOCA[0] = "Caribbean;Snapper Unit 1;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[1] = "Caribbean;Snapper Unit 4;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[2] = "Caribbean;Grouper Unit 1;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[3] = "Caribbean;Grouper Unit 2;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[4] = "Caribbean;Snapper Unit 3;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[5] = "Caribbean;Snapper Unit 2;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[6] = "Caribbean;Grouper Unit 3;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[7] = "Caribbean;Grunts;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[8] = "Caribbean;Goatfishes;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[9] = "Caribbean;Porgies;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[10] = "Caribbean;Squirrelfishes;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[11] = "Caribbean;Tilefishes;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[12] = "Caribbean;Jacks;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[13] = "Caribbean;Parrotfishes;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[14] = "Caribbean;Surgeonfish;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[15] = "Caribbean;Triggerfishes and Filefishes;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[16] = "Caribbean;Boxfishes;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[17] = "Caribbean;Wrasses;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[18] = "Caribbean;Angelfishes;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[19] = "Caribbean;Sixty species for aquarium trade only;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[20] = "Caribbean;Grouper Unit 4;Amendment 2 (2005);SM;0;Reef Fish Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;groupSpecies;;";

INFOCA[21] = "Caribbean;Spiny Lobster;Amendment 2 (2005);Y;0;Spiny Lobster Fishery of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;habitatCoastlineEFH;;";

INFOCA[22] = "Caribbean;Queen Conch;Amendment 1 (2005);Y;0;Queen Conch Resources of Puerto Rico and the U.S. Virgin Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;habitatCoastlineEFH;;";

INFOCA[23] = "Caribbean;Innumerable species for data collection purposes only;Amendment 2 (2005);Y;0;Corals and Reef Associated Invertebrates of Puerto Rico and the U.S. Virgn Islands;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/SFA-FMP.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;56;N;;;habitatCoastlineEFH;;";

INFOCA[24] = "Caribbean;Mutton Snapper Spawning Aggregation Area;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[25] = "Caribbean;Red Hind Spawning Area / Lang Bank;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[26] = "Caribbean;Red Hind Spawning Area / Bajo de Cico;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[27] = "Caribbean;Red Hind Spawning Area / Tourmaline Bank;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[28] = "Caribbean;Red Hind Spawning Area / Abrir La Sierra Bank;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[29] = "Caribbean;Hind Marine Conservation Area;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[30] = "Caribbean;Gramanic Bank Closed Area;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[31] = "Caribbean;Vieques, El Seco;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[32] = "Caribbean;Hacienda la Esperanza, Maniti;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[33] = "Caribbean;Bajuras and Tiberones, Isabela;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[34] = "Caribbean;Cabezas de San Juan, Fajardo;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[35] = "Caribbean;Jobannerr, Jobos Bay;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[36] = "Caribbean;Bioluminescent Bays, Vieques;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[37] = "Caribbean;Boqueron State Forest;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[38] = "Caribbean;Pantano Cibuco, Vega Baja;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[39] = "Caribbean;Pinones State Forest;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[40] = "Caribbean;Rio Espiritu Santo, Rio Grande;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[41] = "Caribbean;Seagrass beds of Culebra Island;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[42] = "Caribbean;Northwest Vieques seagrass west of Mosquito Pier. Vieques;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[43] = "Caribbean;SE St.Thomas, Cas Key & mangrove lagoon, Great St. James Bay;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[44] = "Caribbean;Saba Island/Perseverance Bay, Flat Key & Black Point Reef;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[45] = "Caribbean;Salt River Bay National Historical Park & Ecological Preserve & Marine Sanctuary;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[46] = "Caribbean;Altona Lagoon;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[47] = "Caribbean;Great Pond;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[48] = "Caribbean;South Shore Industrial Area;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[49] = "Caribbean;Sandy Point National Wildlife Refuge;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[50] = "Caribbean;Mona/Monito;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[51] = "Caribbean;La Parguera, Lajas;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[52] = "Caribbean;Caja de Muertos, Ponce;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[53] = "Caribbean;Tourmaline Reef;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[54] = "Caribbean;Guanica State Forest;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[55] = "Caribbean;Punta Petrona, Santa Isabel;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[56] = "Caribbean;Ceiba State Forest;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[57] = "Caribbean;La Cordillera, Farjardo;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[58] = "Caribbean;Guayama Reefs;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[59] = "Caribbean;Steps & Tres Palmas, Rincon;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[60] = "Caribbean;Desecheo Reefs, Desecheo;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[61] = "Caribbean;St.Croix Coral Reef Area/ East End Marine Park;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[62] = "Caribbean;Buck Island Reef National Monument;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[63] = "Caribbean;South Shore Industrial Area Patch Reef & Deep Reef System;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[64] = "Caribbean;Frederiksted Reef System;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[65] = "Caribbean;Cane Bay;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[66] = "Caribbean;Green Cay Wildlife refuge;Amendment 2 (2005);Y;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[67] = "Caribbean;Los Corchos Reef, Culebra;;N;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";

INFOCA[68] = "Caribbean;Luis Pena Channel, Culebra;;N;0;-;http://www.caribbeanfmc.com/SCANNED%20FMPS/FMPS%20LIST.htm;http://www.caribbeanfmc.com/SCANNED%20FMPS/06%20FINAL%20SFA%20-%20MAY%2003,2005/Caribbean_SFA_DSEIS/Text/SECTION%204.pdf;57;Y;;;caribHAPC;;";





//SECRETARIAL 
//HIGHLY MIGRATORY SPECIES


var INFOHM = new Array();

var tempHM = "";
// tuna

tempHM += "Secretarial;Albacore - North Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;7;N;;;HMS1;;";

tempHM += ",Secretarial;Bigeye Tuna - Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;9;N;;;HMS1;;";

tempHM += ",Secretarial;Bluefin Tuna - West Atlantic;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;11;N;;;HMS2;;";

tempHM += ",Secretarial;Skipjack Tuna - West Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;13;N;;;HMS1;;";

tempHM += ",Secretarial;Yellowfin Tuna - Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;14;N;;;HMS1;;";

//swordfish
tempHM += ",Secretarial;Swordfish - North Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;17;N;;;HMS1;;";

//billfish
tempHM += ",Secretarial;Blue Marlin - Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;20;N;;;HMS1;;";

tempHM += ",Secretarial;White Marlin - Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;23;N;;;HMS1;;";

tempHM += ",Secretarial;Sailfish - West Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;25;N;;;HMS1;;";

tempHM += ",Secretarial;Longbill Spearfish - West Atlantic;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;26;N;;;HMS1;;";

//large coastal sharks
tempHM += ",Secretarial;Angel Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;48;N;;;HMS2;;";

tempHM += ",Secretarial;Basking Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;27;N;;;HMS1;;";

tempHM += ",Secretarial;Great Hammerhead;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;28;N;;;HMS2;;";

tempHM += ",Secretarial;Scalloped Hammerhead;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;28;N;;;HMS2;;";

tempHM += ",Secretarial;Smooth Hammerhead;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;29;N;;;HMS1;;";

tempHM += ",Secretarial;White Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;30;N;;;HMS1;;";

tempHM += ",Secretarial;Nurse Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;31;N;;;HMS2;;";

tempHM += ",Secretarial;Bignose Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;32;N;;;HMS1;;";

tempHM += ",Secretarial;Blacktip Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;33;N;;;HMS2;;";

tempHM += ",Secretarial;Bull Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;35;N;;;HMS2;;";

tempHM += ",Secretarial;Caribbean Reef Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;36;N;;;HMS2;;";

tempHM += ",Secretarial;Dusky Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;37;N;;;HMS2;;";

tempHM += ",Secretarial;Galapagos Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;37;N;;;HMS2;;";

tempHM += ",Secretarial;Lemon Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;38;N;;;HMS2;;";

tempHM += ",Secretarial;Narrowtooth Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;39;N;;;HMS1;;";

tempHM += ",Secretarial;Night Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;40;N;;;HMS1;;";

tempHM += ",Secretarial;Sandbar Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;41;N;;;HMS2;;";

tempHM += ",Secretarial;Silky Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;42;N;;;HMS1;;";

tempHM +=  ",Secretarial;Spinner Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;43;N;;;HMS2;;";

tempHM += ",Secretarial;Tiger Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;44;N;;;HMS2;;";

tempHM += ",Secretarial;Bigeye Sand Tiger Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;45;N;;;HMS2;;";

tempHM += ",Secretarial;Sand Tiger Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;46;N;;;HMS2;;";

tempHM += ",Secretarial;Whale Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;47;N;;;HMS2;;";

tempHM += ",Secretarial;Atlantic Angel Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;47;N;;;HMS2;;";

tempHM += ",Secretarial;Bonnethead Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;48;N;;;HMS2;;";

tempHM += ",Secretarial;Atlantic Sharpnose Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;49;N;;;HMS2;;";

tempHM += ",Secretarial;Blacknose Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;50;N;;;HMS2;;";

tempHM += ",Secretarial;Caribbean Sharpnose Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;51;N;;;HMS1;;";

tempHM += ",Secretarial;Finetooth Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;52;N;;;HMS2;;";

tempHM += ",Secretarial;Smalltail Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;52;N;;;HMS1;;";

tempHM += ",Secretarial;Bigeye Sixgill Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;53;N;;;HMS1;;";

tempHM += ",Secretarial;Sevengill Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;54;N;;;HMS1;;";

tempHM += ",Secretarial;Sixgill Shark;;N;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;54;N;;;HMS1;;";

tempHM += ",Secretarial;Longfin Mako Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;55;N;;;HMS1;;";

tempHM += ",Secretarial;Porbeagle Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;56;N;;;HMS1;;";

tempHM += ",Secretarial;Shortfin Mako Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;57;N;;;HMS2;;";

tempHM += ",Secretarial;Blue Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;58;N;;;HMS2;;";

tempHM += ",Secretarial;Oceanic Whitetip Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;59;N;;;HMS1;;";

tempHM += ",Secretarial;Bigeye Thresher Shark;;LS;0;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;60;N;;;HMS1;;";

tempHM += ",Secretarial;Thresher Shark;;LS;1;Atlantic Highly Migratory Species- CONSOLIDATED HMS FMP- APPENDIX B (JULY 2006);http://www.nmfs.noaa.gov/sfa/hms/hmsdocument_files/FMPs.htm;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;61;N;;;HMS1;;";

tempHM += ",Secretarial;Sandbar Shark;;Y;0;;;http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf;42;Y;;;HMS2;;";

INFOHM = tempHM.split(",")

// SOUTHEAST REGION
//GULF OF MEXICO DATA ARRAY


var INFOGM = Array();

var tempGOMArray = "";

tempGOMArray += "Gulf of Mexico;Stone Crab;Generic Amendment Number 3(2005);Y;0;Gulf of Mexico Stone Crab;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;;;habitatCoastlineEFH;;";

tempGOMArray += "~Gulf of Mexico;Brown Shrimp;Generic Amendment Number 3(2005);SM;0;Gulf of Mexico Shrimp;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Pink Shrimp;Generic Amendment Number 3(2005);SM;0;Gulf of Mexico Shrimp;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;White Shrimp;Generic Amendment Number 3(2005);SM;0;Gulf of Mexico Shrimp;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Rock Shrimp;Generic Amendment Number 3(2005);SM;0;Gulf of Mexico Shrimp;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Seabob Shrimp;Generic Amendment Number 3(2005);SM;0;Gulf of Mexico Shrimp;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Royal Red Shrimp;Generic Amendment Number 3(2005);SM;0;Gulf of Mexico Shrimp;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Red Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Red Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Greater Amberjack;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Vermilion Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Gag;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Gray Triggerfish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Yellowedge Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Snowy Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Black Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Hogfish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Mutton Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Gray (Mangrove) Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Lane Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Scamp;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Lesser Amberjack;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Almaco Jack;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Banded Rudderfish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Queen Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Schoolmaster;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Blackfin Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Cubera Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Dog Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Mahogany Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Silk Snapper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Wenchman;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Goldface Tilefish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Blackline Tilefish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Anchor Tilefish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Blueline Tilefish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Tilefish;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Rock Hind;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Speckled Hind;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Red Hind;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Misty Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Warsaw Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Yellowmouth Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Yellowfin Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Dwarf Sand Perch;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Sand Perch;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Nassau Grouper;Generic Amendment Number 3(2005);SM;0; Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Red Drum;Generic Amendment Number 3(2005);Y;0;Gulf of Mexico Red Drum;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;;;habitatCoastlineEFH;;";

tempGOMArray += "~Gulf of Mexico;Fire Corals;Generic Amendment Number 3(2005);SM;0;Coral and Coral Reefs of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Hydrocorals;Generic Amendment Number 3(2005);SM;0;Coral and Coral Reefs of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Octocorals;Generic Amendment Number 3(2005);SM;0;Coral and Coral Reefs of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Stony Corals;Generic Amendment Number 3(2005);SM;0;Coral and Coral Reefs of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Black Corals;Generic Amendment Number 3(2005);SM;0;Coral and Coral Reefs of the Gulf of Mexico;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;;;groupSpecies;;";

// comanaged species


tempGOMArray += "~Gulf of Mexico;Dolphin;;N;0;Dolphin Wahoo and Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic;http://www.gulfcouncil.org/;;;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;King Mackerel - Gulf ;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;N;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Spanish Mackerel - Gulf ;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;18;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Little Tunny;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;20;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Cero Mackerel;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;21;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Cobia;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;22;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Bluefish ;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;25;N;;;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Goliath Grouper;;N;0;South Atlantic Snapper-Grouper and Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;;;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Yellowtail Snapper;;N;0;South Atlantic Snapper-Grouper and Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;;;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Spiny Lobster;;SM;0;Gulf of Mexico / South Atlantic Spiny Lobster (SAFMC FMP- Amendment 5 1998);http://www.gulfcouncil.org/;;;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Spiny%20Lobster%20EFH.htm;groupSpecies;;";

tempGOMArray += "~Gulf of Mexico;Slipper Lobster;;SM;0;Gulf of Mexico / South Atlantic Spiny Lobster (SAFMC FMP- Amendment 5 1998);http://www.gulfcouncil.org/;;;N;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Spiny%20Lobster%20EFH.htm;groupSpecies;;";

//HAPC starts here
tempGOMArray += "~Gulf of Mexico;Florida Middle Grounds;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;EEZ Portion of Tortugas North;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;West Flower Garden Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;East Flower Garden Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Stetson Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;McGrail Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Madison Swanson Marine Reserve;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Pulley Ridge;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;29 Fathom;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;MacNeil;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Rezak Sidner Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Rankin Bright Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Geyer Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Bouma Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Sonnier Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Alderice Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

tempGOMArray += "~Gulf of Mexico;Jakkula Bank;Final GMFMC EFH Amendment (2005) ;Y;1;;http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;10;Y;;;hapcok1;;";

INFOGM = tempGOMArray.split("~");



// NORTHEAST REGION
//NORTHEAST DATA ARRAY 



var lsz = 40;

var INFONE = Array([lsz]);

INFONE[0] = "New England;Atlantic Sea Scallop;Amend 9- 1998;LS;1;Atlantic Sea Scallop;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/scallops.PDF;;N;N;;NE1;;";

INFONE[1] = "New England;Cod - Gulf of Maine;Amend 11- 1998;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/cod.PDF;;N;N;;NE1;;";

INFONE[2] = "New England;Cod - Georges Bank;Amend 11- 1999;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/cod.PDF;;N;N;;NE1;;";

INFONE[3] = "New England;Haddock - Gulf of Maine;Amend 11- 2000;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/haddock.PDF;;N;N;;NE1;;";

INFONE[4] = "New England;Haddock - Georges Bank;Amend 11- 2001;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/haddock.PDF;;N;N;;NE1;;";

INFONE[5] = "New England;American Plaice;Amend 11- 2002;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/am-plaice.PDF;;N;N;;NE1;;";

INFONE[6] = "New England;Redfish;Amend 11- 2003;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/redfish.PDF;;N;N;;NE1;;";

INFONE[7] = "New England;Witch Flounder;Amend 11- 2004;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/witch.PDF;;N;N;;NE1;;";

INFONE[8] = "New England;Yellowtail Flounder - Georges Bank;Amend 11- 2005;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/yellowtail.PDF;;N;N;;NE1;;";

INFONE[9] = "New England;Yellowtail Flounder - Southern New England/Middle Atlantic;Amend 11- 2006;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/yellowtail.PDF;;N;N;;NE1;;";

INFONE[10] = "New England;Yellowtail Flounder - Cape Cod / Gulf of Maine;Amend 11- 2007;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/yellowtail.PDF;;N;N;;NE1;;";

INFONE[11] = "New England;White Hake;Amend 11- 2008;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/white-hake.PDF;;N;N;;NE1;;";

INFONE[12] = "New England;Pollock;Amend 11- 2009;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/pollock.PDF;;N;N;;NE1;;";

INFONE[13] = "New England;Windowpane Flounder - Gulf of Maine / Georges Bank;Amend 11- 2010;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/windowpane.PDF;;N;N;;NE1;;";

INFONE[14] = "New England;Windowpane Flounder - Southern New England /Middle Atlantic;Amend 11- 2011;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/windowpane.PDF;;N;N;;NE1;;";

INFONE[15] = "New England;Winter Flounder - Gulf of Maine;Amend 11- 2012;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/winter.PDF;;N;N;;NE1;;";

INFONE[16] = "New England;Winter Flounder - Georges Bank;Amend 11- 2013;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/winter.PDF;;N;N;;NE1;;";

INFONE[17] = "New England;Winter Flounder - Southern New England / Middle Atlantic;Amend 11- 2014;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/winter.PDF;;N;N;;NE1;;";

INFONE[18] = "New England;Red Hake - Gulf of Maine  / Northern Georges Bank;Amend 11- 2015;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/red-hake.PDF;;N;N;;NE1;;";

INFONE[19] = "New England;Red Hake - Southern Georges Bank / Middle Atlantic;Amend 11- 2016;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/red-hake.PDF;;N;N;;NE1;;";

INFONE[20] = "New England;Ocean Pout;Amend 11- 2017;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/ocean-pout.PDF;;N;N;;NE1;;";

INFONE[21] = "New England;Atlantic Halibut;Amend 11- 2018;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/halibut.PDF;;N;N;;NE1;;";

INFONE[22] = "New England;Silver Hake - Gulf of Maine / Northern Georges Bank;Amend 11- 2019;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;;;N;N;;NE1;;";

INFONE[23] = "New England;Silver Hake - Southern Georges Bank / Middle Atlantic;Amend 11- 2020;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;;;N;N;;NE1;;";

INFONE[24] = "New England;Offshore Hake;Amend 11- 2021;LS;1;New England Multispecies;http://www.nefmc.org/habitat/index.html;;;N;N;;NE1;;";

INFONE[25] = "New England;Little Skate;Skate FMP 2003;N;0;New England Skate;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/skates/fmp/skate_final_fmp_sec3.PDF;7;N;N;;NE1;;";

INFONE[26] = "New England;Winter Skate;Skate FMP 2004;N;0;New England Skate;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/skates/fmp/skate_final_fmp_sec3.PDF;10;N;N;;NE1;;";

INFONE[27] = "New England;Barndoor Skate;Skate FMP 2005;N;0;New England Skate;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/skates/fmp/skate_final_fmp_sec3.PDF;6;N;N;;NE1;;";

INFONE[28] = "New England;Thorny Skate;Skate FMP 2006;N;0;New England Skate;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/skates/fmp/skate_final_fmp_sec3.PDF;9;N;N;;NE1;;";

INFONE[29] = "New England;Clearnose Skate;Skate FMP 2007;N;0;New England Skate;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/skates/fmp/skate_final_fmp_sec3.PDF;6;N;N;;NE1;;";

INFONE[30] = "New England;Rosette Skate;Skate FMP 2008;N;0;New England Skate;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/skates/fmp/skate_final_fmp_sec3.PDF;8;N;N;;NE1;;";

INFONE[31] = "New England;Smooth Skate;Skate FMP 2009;N;0;New England Skate;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/skates/fmp/skate_final_fmp_sec3.PDF;9;N;N;;NE1;;";

INFONE[32] = "New England;Atlantic Salmon;Amend 1- 1998;N;0;Atlantic Salmon;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/salmon.PDF;;N;N;;NE1;;";

INFONE[33] = "New England;Atlantic Herring;Herring FMP (1999) references 1998 EFH Omnibus;LS;1;Atlantic Herring;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/herring.PDF;;N;N;;NE1;;";

INFONE[34] = "New England;Monkfish - North;Amend 1- 1998;LS;1;Monkfish;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/monkfish.PDF;;N;N;;NE1;;";

INFONE[35] = "New England;Monkfish - South;Amend 1- 1999;LS;1;Monkfish;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/habitat/planamen/original_omnibus/monkfish.PDF;;N;N;;NE1;;";

INFONE[36] = "New England;Deep-Sea Red Crab;Red Crab FMP 2002;N;0;Red Crab;http://www.nefmc.org/habitat/index.html;http://www.nefmc.org/crab/fmp/rcfw1_sec03.PDF;41;N;N;;NE1;;";

INFONE[37] = "New England;Georges Bank for Atlantic Cod;;Y;1;NE Multispecies- Amendment 11;http://www.nefmc.org/habitat/index.html;http://www.nero.noaa.gov/hcd/sec_3.pdf;4;Y;N;;hapcok1;;";

INFONE[38] = "New England;Rivers in Maine for Atlantic Salmon;;N;0;Atlantic Salmon- Amendment 1;http://www.nefmc.org/habitat/index.html;http://www.nero.noaa.gov/hcd/sec_3.pdf;5;Y;N;;NE1;;";

//MID-ATLANTIC

var lsz = 15;

var INFOMA = Array([lsz]);

INFOMA[0] = "Mid-Atlantic;Summer Flounder;Amendment 12 (1999);N;0;Summer Flounder, Scup and Black Sea Bass;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/summerflounder.htm;;N;N;;TEMP;;";

INFOMA[1] = "Mid-Atlantic;Scup;Amendment 12 (1999);N;0;Summer Flounder, Scup and Black Sea Bass;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/scup.htm;;N;N;;TEMP;;";

INFOMA[2] = "Mid-Atlantic;Black Sea Bass;Amendment 12 (1999);N;0;Summer Flounder, Scup, and Black Sea Bass;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/blackseabass.htm;;N;N;;TEMP;;";

INFOMA[3] = "Mid-Atlantic;Bluefish (except Gulf of Mexico);Amendment 1 (2000);N;0;Atlantic Bluefish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/bluefish.htm;;N;N;;TEMP;;";

INFOMA[4] = "Mid-Atlantic;Atlantic Surfclam;Amendment 12 (1998);N;0;Atlantic Surfclam and Ocean Quahog;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/surfclam.htm;;N;N;;TEMP;;";

INFOMA[5] = "Mid-Atlantic;Ocean Quahog;Amendment 12 (1998);N;0;Atlantic Surfclam and Ocean Quahog;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/oceanquahog.htm;;N;N;;TEMP;;";

INFOMA[6] = "Mid-Atlantic;Squid - Illex;Amendment 8 (1998) & Amendment 9 for Loligo eggs (2008 Pending Final Rule);N;0;Atlantic Mackerel, Squid, and Butterfish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/illexsquid.htm;;N;N;;TEMP;;";

INFOMA[7] = "Mid-Atlantic;Squid - Loligo;Amendment 8 (1998) & Amendment 9 for Loligo eggs (2008 Pending Final Rule);N;0;Atlantic Mackerel, Squid, and Butterfish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/loligosquid.htm;;N;N;;TEMP;;";

INFOMA[8] = "Mid-Atlantic;Atlantic Mackerel;Amendment 8 (1998) & Amendment 9 for Loligo eggs (2008 Pending Final Rule);N;0;Atlantic Mackerel, Squid, and Butterfish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/atlanticmackeral.htm;;N;N;;TEMP;;";

INFOMA[9] = "Mid-Atlantic;Butterfish (Atlantic);Amendment 8 (1998) & Amendment 9 for Loligo eggs (2008 Pending Final Rule);N;0;Atlantic Mackerel, Squid, and Butterfish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/butterfish.htm;;N;N;;TEMP;;";

INFOMA[10] = "Mid-Atlantic;Golden Tilefish (except South Atlantic and Gulf of Mexico);Tilefish FMP 2001;N;0;Tilefish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/tilefish.htm;;N;N;;TEMP;;";

INFOMA[11] = "Mid-Atlantic;Spiny Dogfish;Spiny Dogfish FMP 2000;N;0;Spiny Dogfish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;http://www.nero.noaa.gov/hcd/dogfish.htm;;N;N;;TEMP;;";

INFOMA[12] = "Mid-Atlantic;Summer Flounder;Amendment 12;N;0;Summer Flounder, Scup and Black Sea Bass;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;;;Y;N;;TEMP;;";

INFOMA[13] = "Mid-Atlantic;Tilefish;;N;0;Tilefish;http://www.mafmc.org/mid-atlantic/fmp/fmp.htm;;;Y;N;;TEMP;;";

//NORTHWEST DATA ARRAY

/*
0 - council
1 - species name
2 - FMP
3 - status data
4 - ?
5 - FMP
6 - link
7 - link
8 - page
9 - EFH Hapc? efh=Y hapc=n
10 - Metadata Y or N
11 - Meta Link
12 - Caveat 1
13 - Caveat 2
14 - Download Link
*/

var lsz = 223;

var INFONW = Array([lsz]);

INFONW[0] = "Pacific;Pacific Ocean Perch;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;groupedGroundfish;;";

INFONW[1] = "Pacific;Bocaccio;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[2] = "Pacific;Canary Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[3] = "Pacific;Darkblotched Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[4] = "Pacific;Cowcod;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[5] = "Pacific;Yelloweye Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[6] = "Pacific;Lingcod;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[7] = "Pacific;Widow Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[8] = "Pacific;Shortspine Thornyhead;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[9] = "Pacific;Black Rockfish - North;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[10] = "Pacific;Pacific Whiting;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[11] = "Pacific;Bank Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[12] = "Pacific;Longspine Thornyhead;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[13] = "Pacific;Yellowtail Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[14] = "Pacific;Sablefish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[15] = "Pacific;Dover Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[16] = "Pacific;English Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[17] = "Pacific;Petrale Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[18] = "Pacific;Chilipepper Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[19] = "Pacific;Arrowtooth Flounder;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[20] = "Pacific;Cabezon - South;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[21] = "Pacific;Pacific Cod;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[22] = "Pacific;Rex Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[23] = "Pacific;Sand Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[24] = "Pacific;Starry Flounder;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[25] = "Pacific;Blackgill Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[26] = "Pacific;Blue Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[27] = "Pacific;Brown Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[28] = "Pacific;Gopher Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[29] = "Pacific;Splitnose Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[30] = "Pacific;Vermilion Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[31] = "Pacific;Spiny Dogfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[32] = "Pacific;California Scorpionfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[33] = "Pacific;Kelp Greenling - Oregon;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[34] = "Pacific;Longnose Skate;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[35] = "Pacific;Pacific Rattail;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[36] = "Pacific;Pacific Sanddab;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[37] = "Pacific;Rougheye Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[38] = "Pacific;Silvergrey Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[39] = "Pacific;Butter Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[40] = "Pacific;Curlfin Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[41] = "Pacific;Flathead Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[42] = "Pacific;Rock Sole;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[43] = "Pacific;Aurora Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[44] = "Pacific;Black-And-Yellow Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[45] = "Pacific;Bronzespotted Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[46] = "Pacific;Calico Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[47] = "Pacific;Chameleon Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[48] = "Pacific;China Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[49] = "Pacific;Copper Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[50] = "Pacific;Dusky Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[51] = "Pacific;Dwarf-Red Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[52] = "Pacific;Flag Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[53] = "Pacific;Freckled Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[54] = "Pacific;Grass Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[55] = "Pacific;Greenblotched Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[56] = "Pacific;Greenspotted Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[57] = "Pacific;Greenstriped Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[58] = "Pacific;Halfbanded Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[59] = "Pacific;Harlequin Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[60] = "Pacific;Honeycomb Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[61] = "Pacific;Kelp Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[62] = "Pacific;Mexican Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[63] = "Pacific;Olive Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[64] = "Pacific;Pink Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[65] = "Pacific;Pinkrose Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[66] = "Pacific;Pygmy Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[67] = "Pacific;Quillback Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[68] = "Pacific;Redbanded Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[69] = "Pacific;Redstripe Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[70] = "Pacific;Rosethorn Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[71] = "Pacific;Rosy Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[72] = "Pacific;Sharpchin Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[73] = "Pacific;Shortraker Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[74] = "Pacific;Speckled Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[75] = "Pacific;Squarespot Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[76] = "Pacific;Starry Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[77] = "Pacific;Stripetail Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[78] = "Pacific;Swordspine Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[79] = "Pacific;Tiger Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[80] = "Pacific;Yellowmouth Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[81] = "Pacific;Leopard Shark;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[82] = "Pacific;Soupfin Shark;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[83] = "Pacific;Big Skate;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[84] = "Pacific;California Skate;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[85] = "Pacific;Ratfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[86] = "Pacific;Finescale Codling;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[87] = "Pacific;Treefish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[88] = "Pacific;Shortbelly Rockfish;U.S. WEST COAST FISHERIES FOR HIGHLY MIGRATORY SPECIES Amendment 1 (2007);SM;0;Pacific Coast Groundfish;http://www.pcouncil.org/groundfish/gffmp.html;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;72;N;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;groupSpecies;;";

INFONW[89] = "Pacific;Pacific (Chub) Mackerel;Coastal Pelagic Species FMP (1998);N;0;Coastal Pelagic Species;;http://www.pcouncil.org/cps/cpsfmp/a8apdxd.pdf;4;N;;;;;";

INFONW[90] = "Pacific;Pacific Sardine;Coastal Pelagic Species FMP (1998);N;0;Coastal Pelagic Species;;http://www.pcouncil.org/cps/cpsfmp/a8apdxd.pdf;4;N;;;;;";

INFONW[91] = "Pacific;Jack Mackerel;Coastal Pelagic Species FMP (1998);N;0;Coastal Pelagic Species;;http://www.pcouncil.org/cps/cpsfmp/a8apdxd.pdf;4;N;;;;;";

INFONW[92] = "Pacific;Northern Anchovy - Central Subpopulation;Coastal Pelagic Species FMP (1998);N;0;Coastal Pelagic Species;;http://www.pcouncil.org/cps/cpsfmp/a8apdxd.pdf;4;N;;;;;";

INFONW[93] = "Pacific;Market Squid;Coastal Pelagic Species FMP (1998);N;0;Coastal Pelagic Species;;http://www.pcouncil.org/cps/cpsfmp/a8apdxd.pdf;4;N;;;;;";

INFONW[94] = "Pacific;Northern Anchovy - Northern Subpopulation;Coastal Pelagic Species FMP (1998);N;0;Coastal Pelagic Species;;http://www.pcouncil.org/cps/cpsfmp/a8apdxd.pdf;4;N;;;;;";

INFONW[95] = "Pacific;Skipjack Tuna - Eastern Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;30;N;;;;;";

INFONW[96] = "Pacific;Yellowfin Tuna - Eastern Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;33;N;;;;;";

INFONW[97] = "Pacific;Striped Marlin - Eastern Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;36;N;;;;;";

INFONW[98] = "Pacific;Bigeye Tuna - Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;25;N;;;;;";

INFONW[99] = "Pacific;Bluefin Tuna - Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;28;N;;;;;";

INFONW[100] = "Pacific;Albacore - North Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;22;N;;;;;";

INFONW[101] = "Pacific;Swordfish - North Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;39;N;;;;;";

INFONW[102] = "Pacific;Dolphinfish (Dorado or Mahimahi) - Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;42;N;;;;;";

INFONW[103] = "Pacific;Blue Shark - North Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;18;N;;;;;";

INFONW[104] = "Pacific;Common Thresher Shark - North Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;6;N;;;;;";

INFONW[105] = "Pacific;Bigeye Thresher Shark - North Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;11;N;;;;;";

INFONW[106] = "Pacific;Pelagic Thresher Shark - North Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;8;N;;;;;";

INFONW[107] = "Pacific;Shortfin Mako Shark - North Pacific;Amendment 1 (2007);N;0;U.S. West Coast Fisheries for Highly Migratory Species;;http://www.pcouncil.org/hms/fmp/HMS_AppF.pdf;14;N;;;;;";

INFONW[108] = "Pacific;California Central Valley Chinook;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[109] = "Pacific;Sacramento River Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[110] = "Pacific;Sacramento River Spring (Central Valley Spring - ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[111] = "Pacific;Sacramento River Winter (ESA Endangered 1994);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[112] = "Pacific;Northern California Coast Chinook;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[113] = "Pacific;Klamath River Fall (Klamath and Trinity Rivers);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[114] = "Pacific;Eel, Mattole, Mad, and Smith Rivers (Fall and Spring) (Eel, Mattole and Mad River Stocks - ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[115] = "Pacific;Klamath River Spring (Klamath and Trinity Rivers) ;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[116] = "Pacific;Oregon Coast Chinook;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[117] = "Pacific;Southern Oregon (Aggregate of Fall and Spring stocks in all streams south of Elk River, Rogue River Fall stock is used to indicate relative abundance and ocean contribution rates);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[118] = "Pacific;Central and Northern Oregon (Aggregate of Fall and Spring stocks in all streams from the Elk River to just south of the Columbia River);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[119] = "Pacific;Columbia River Basin Chinook;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[120] = "Pacific;North Lewis River Fall (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[121] = "Pacific;Lower River Hatchery Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[122] = "Pacific;Lower River Hatchery Spring;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[123] = "Pacific;Spring Creek Hatchery Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[124] = "Pacific;Snake River Fall  (ESA Threatened 1992);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[125] = "Pacific;Upper Willamette Spring (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[126] = "Pacific;Mid-River Bright Hatchery (Fall);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[127] = "Pacific;Klickitat, Warm Springs, John Day, and Yakima Rivers (Spring);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[128] = "Pacific;Snake River Spring / Summer (ESA Threatened 1992);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[129] = "Pacific;Upper River Bright (Fall);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[130] = "Pacific;Upper River Summer;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[131] = "Pacific;Upper River Spring (ESA Endangered 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[132] = "Pacific;Washington Coast Chinook;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[133] = "Pacific;Willapa Bay Fall (Natural);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[134] = "Pacific;Willapa Bay Fall (Hatchery);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[135] = "Pacific;Grays Harbor Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[136] = "Pacific;Grays Harbor Spring;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[137] = "Pacific;Quinault Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[138] = "Pacific;Queets Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[139] = "Pacific;Queets Spring / Summer;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[140] = "Pacific;Hoh Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[141] = "Pacific;Hoh Spring / Summer;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[142] = "Pacific;Quillayute Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[143] = "Pacific;Quillayute Spring / Summer;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[144] = "Pacific;Hoko Summer / Fall (Western Strait of Juan De Fuca);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[145] = "Pacific;Puget Sound Chinook;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[146] = "Pacific;Eastern Strait of Juan De Fuca Summer / Fall (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[147] = "Pacific;Skokomish Summer / Fall (Hood Canal) (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[148] = "Pacific;Nooksack Spring (Early) (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[149] = "Pacific;Skagit Summer / Fall (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[150] = "Pacific;Skagit Spring (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[151] = "Pacific;Stillaguamish Summer / Fall (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[152] = "Pacific;Snohomish Summer / Fall(ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[153] = "Pacific;Cedar River Summer / Fall (Lake Washington )  (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[154] = "Pacific;White River Spring (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[155] = "Pacific;Green River Summer / Fall Threatened (1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[156] = "Pacific;Nisqually River Summer / Fall (South Puget Sound) (ESA Threatened 1999);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[157] = "Pacific;Southern British Columbia Chinook;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[158] = "Pacific;Coastal Stocks27;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[159] = "Pacific;Fraser River (British Columbia, Canada)27;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[160] = "Pacific;Oregon Production Index Area Coho;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[161] = "Pacific;Oregon Coastal Natural comprised of Southern, South-Central, North-Central, and Northern Oregon Stocks. (Northern Stocks - Proposed ESA Threatened 2004, Southern Stock - ESA Threatened 1997);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[162] = "Pacific;Columbia River Late (Hatchery);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[163] = "Pacific;Columbia River Early (Hatchery);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[164] = "Pacific;Central California Coast (ESA Threatened 1996);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[165] = "Pacific;Northern California(ESA Threatened 1997);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[166] = "Pacific;Columbia River (Natural) (Proposed ESA Threatened 2004);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[167] = "Pacific;Washington Coastal Coho;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[168] = "Pacific;Willapa Bay (Hatchery);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[169] = "Pacific;Grays Harbor;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[170] = "Pacific;Quinault (Hatchery);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[171] = "Pacific;Queets;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[172] = "Pacific;Hoh;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[173] = "Pacific;Quillayute Fall;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[174] = "Pacific;Quillayute Summer (Hatchery);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[175] = "Pacific;Western Strait of Juan De Fuca (Sekiu, Hoko, Clallam, Pysht, East and West, and Lyre Rivers and miscellaneous streams west of the Elwha River);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[176] = "Pacific;Puget Sound Coho;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[177] = "Pacific;Eastern Strait of Juan De Fuca (streams east of Salt Creek through Chimacum Creek);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[178] = "Pacific;Hood Canal;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[179] = "Pacific;Skagit;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[180] = "Pacific;Stillaguamish;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[181] = "Pacific;Snohomish;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[182] = "Pacific;South Puget Sound (Hatchery);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[183] = "Pacific;Southern British Columbia Coast Coho;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[184] = "Pacific;Coastal Stocks;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[185] = "Pacific;Fraser River (British Columbia, Canada);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[186] = "Pacific;Pink (Odd-Numbered Years);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[187] = "Pacific;Puget Sound;Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";

INFONW[188] = "Pacific;Fraser River (British Columbia, Canada);Amendment 14 (2000);N;0;West Coast Salmon;http://www.pcouncil.org/salmon/salfmp.html;http://www.pcouncil.org/salmon/salfmp/a14/99efh1.pdf;10;N;;;;;";


//hapc habitat

INFONW[189] = "Pacific;Estuaries;;Y;0;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;coastlineHAPC;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[190] = "Pacific;Canopy Kelp;;Y;0;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;habitatHAPC;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[191] = "Pacific;Seagrass;;Y;0;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;habitatHAPC;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[192] = "Pacific;Rocky Reefs;;Y;0;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;habitatHAPC;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

///hapc


INFONW[193] = "Pacific;Thompson Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[194] = "Pacific;Daisy Bank;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[195] = "Pacific;President Jackson Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[196] = "Pacific;Cordell Bank;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[197] = "Pacific;Gumdrop Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[198] = "Pacific;Pioneer Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[199] = "Pacific;Guide Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[200] = "Pacific;Monterey Canyon;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[201] = "Pacific;Taney Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[202] = "Pacific;Davidson Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[203] = "Pacific;San Juan Seamount;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[204] = "Pacific;CINMS-Anacapa Island SMCA;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[205] = "Pacific;CINMS-Anacapa Island SMR;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[206] = "Pacific;CINMS-Carrington Point;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[207] = "Pacific;CINMS-Footprint;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[208] = "Pacific;CINMS-Gulf Island;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[209] = "Pacific;CINMS-Harris Point;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[210] = "Pacific;CINMS-Judith Rock;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[211] = "Pacific;CINMS-Painted Cove;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[212] = "Pacific;CINMS-Richardson Rock;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[213] = "Pacific;CINMS-Santa Barbara;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[214] = "Pacific;CINMS-Scorpion;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[215] = "Pacific;CINMS-Skunk Point;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[216] = "Pacific;CINMS-South Point;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[217] = "Pacific;Cowcod Conservation Area East;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[218] = "Pacific;Potato Bank;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[219] = "Pacific;Cherry Bank;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[220] = "Pacific;Hidden Reef/Kidney Bank;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;hapcok1;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";

INFONW[221] = "Pacific;All waters and sea bottom in Wash.St. waters (0-3 nm offshor;;Y;1;;;http://www.pcouncil.org/groundfish/gffmp/gfa19/A18-19Final.pdf;75;Y;Y;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html;TEMP;;http://marinehabitat.psmfc.org/pacific-coast-groundfish-efh-gis-data.html";


/*
0 - council
1 - species name
2 - FMP
3 - status data
4 - ?
5 - FMP
6 - link
7 - link
8 - page
9 - EFH Hapc? efh=Y hapc=n
10 - Metadata Y or N
*/


//NORTH PACIFIC  DATA ARRARY




var lsz = 82;

var INFONP = Array([lsz]);

INFONP[0] = "North Pacific;Walleye Pollock;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;70;N;http://www.fakr.noaa.gov/npfmc/fmp/goa/GOA.pdf;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[1] = "North Pacific;Pacific Cod;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;71;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[2] = "North Pacific;Sablefish;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;71;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[3] = "North Pacific;Yellowfin Sole;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;72;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[4] = "North Pacific;Rock Sole;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;72;;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[5] = "North Pacific;Alaska Plaice;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;73;;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[6] = "North Pacific;Arrowtooth Flounder;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;74;;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[7] = "North Pacific;Pacific Ocean Perch (Includes Western Central And Eastern);;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;75;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[8] = "North Pacific;Northern Rockfish - Western / Central;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;75;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[9] = "North Pacific;Flathead Sole;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;74;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[10] = "North Pacific;Dusky Rockfish (Indicator Species For Pelagic Shelf Rockfish Complex);;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;77;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[11] = "North Pacific;Dover Sole (Indicator Species For Deepwater Flatfish Complex);;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;73;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[12] = "North Pacific;Rex Sole;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;73;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[13] = "North Pacific;Shortspine Thornyhead (Indicator Species For Thornyhead Rockfish Complex);;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;76;N;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[14] = "North Pacific;Yelloweye Rockfish (Indicator Species For Demersal Shelf Rockfish Complex);;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;76;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[15] = "North Pacific;Squid  ;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;77;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[16] = "North Pacific;Sculpins;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;78;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[17] = "North Pacific;Sharks;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;78;N;;;akefh1;;";

INFONP[18] = "North Pacific;Octopus;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;78;N;;;akefh1;;";

INFONP[19] = "North Pacific;Forage Fish Complex;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;78;N;;;akefh1;;";

INFONP[20] = "North Pacific;Atka Mackerel;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;76;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[21] = "North Pacific;Other Slope Rockfish Complex;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;75;N;;;akefh1;;";

INFONP[22] = "North Pacific;Shallow Water Flatfish Complex;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;75;N;;;akefh1;;";

INFONP[23] = "North Pacific;Big Skate;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;78;N;;;akefh1;;";

INFONP[24] = "North Pacific;Longnose Skate;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;;78;N;;;akefh1;;";

INFONP[25] = "North Pacific;Other Skates Complex;;N;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;;78;N;;;akefh1;;";

INFONP[26] = "North Pacific;Shortraker Rockfish;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;75;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[27] = "North Pacific;Rougheye Rockfish;;LS;0;Gulf of Alaska Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/GOA%20Groundfish.htm;75;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[28] = "North Pacific;Walleye Pollock ;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;77;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[29] = "North Pacific;Pacific Cod;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;78;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[30] = "North Pacific;Yellowfin Sole;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;79;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[31] = "North Pacific;Greenland Turbot;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;79;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[32] = "North Pacific;Arrowtooth Flounder;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;79;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[33] = "North Pacific;Rock Sole;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;80;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[34] = "North Pacific;Flathead Sole;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;81;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[35] = "North Pacific;Pacific Ocean Perch;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;81;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[36] = "North Pacific;Atka Mackerel;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;84;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[37] = "North Pacific;Alaska Plaice;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[38] = "North Pacific;Northern Rockfish;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;82;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[39] = "North Pacific;Shortraker Rockfish;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;82;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[40] = "North Pacific;Other Rockfish Complex;;N;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;;;N;;;akefh1;;";

INFONP[41] = "North Pacific;Other Flatfish Complex;;N;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;;;N;;;akefh1;;";

INFONP[42] = "North Pacific;Squid Complex;;N;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;84;N;;;akefh1;;";

INFONP[43] = "North Pacific;Other Species Complex;;N;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;;;N;;;akefh1;;";

INFONP[44] = "North Pacific;Sculpins;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;84;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[45] = "North Pacific;Octopus;;N;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;85;N;;;akefh1;;";

INFONP[46] = "North Pacific;Forage Fish Complex;;N;0;Bering Sea / Aleutian Islands Groundfish;;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;85;N;;;akefh1;;";

INFONP[47] = "North Pacific;Skates;;LS;0;Bering Sea / Aleutian Islands Groundfish;;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;85;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[48] = "North Pacific;Sharks;;N;0;Bering Sea / Aleutian Islands Groundfish;;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;85;N;;;akefh1;;";

INFONP[49] = "North Pacific;Dusky Rockfish  ;;LS;0;Bering Sea / Aleutian Islands Groundfish;;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;83;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[50] = "North Pacific;Thornyhead Rockfish;;LS;0;Bering Sea / Aleutian Islands Groundfish;;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;83;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[51] = "North Pacific;Yelloweye Rockfish  ;;LS;0;Bering Sea / Aleutian Islands Groundfish;;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;83;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[52] = "North Pacific;Rougheye Rockfish;;LS;0;Bering Sea / Aleutian Islands Groundfish;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Groundfish.htm;82;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[53] = "North Pacific;Blue King Crab - Pribilof Islands;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;http://www.fakr.noaa.gov/npfmc/fmp/crab/CRABFMP2004.pdf;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[54] = "North Pacific;Blue King Crab - Saint Matthews Island;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[55] = "North Pacific;Golden King Crab -Aleutian Islands;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[56] = "North Pacific;Red King Crab - Aleutian Islands Adak;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[57] = "North Pacific;Red  King Crab - Bristol Bay;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[58] = "North Pacific;Red King Crab - Norton Sound;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[59] = "North Pacific;Red King Crab - Pribilof Islands;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[60] = "North Pacific;Snow Crab - Bering Sea;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[61] = "North Pacific;Blue King Crab - Saint Lawrence Island;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[62] = "North Pacific;Golden King Crab - Northern District;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[63] = "North Pacific;Golden King Crab - Pribilof Islands;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[64] = "North Pacific;Red King Crab - Aleutian Islands Dutch Harbor;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[65] = "North Pacific;Scarlet King Crab - Aleutian Islands;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[66] = "North Pacific;Scarlet King Crab - Eastern Bering Sea;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[67] = "North Pacific;Tanner Crab - Adak (Western Aleutians);;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[68] = "North Pacific;Tanner Crab - Eastern Aleutian Islands;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[69] = "North Pacific;Tanner Crab - Eastern Aleutian Islands Grooved;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[70] = "North Pacific;Tanner Crab - Eastern Aleutian Islands Triangle;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[71] = "North Pacific;Tanner Crab - Eastern Bering Sea Grooved;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[72] = "North Pacific;Tanner Crab - Eastern Bering Sea Triangle;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[73] = "North Pacific;Tanner Crab - Western Aleutian Islands Grooved;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[74] = "North Pacific;Tanner Crab - Eastern Bering Sea;;LS;0;Bering Sea / Aleutian Islands King and Tanner Crabs;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/BSAI%20Crab.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[75] = "North Pacific;Coho Salmon Assemblage;;LS;0;Alaska Salmon;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/Salmon.htm;;N;http://www.fakr.noaa.gov/npfmc/fmp/salmon/SalmonFMP.pdf;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[76] = "North Pacific;Eastern North Pacific Far North Migrating Chinook;;LS;0;Alaska Salmon;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/Salmon.htm;;N;;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[77] = "North Pacific;Alaska Scallops;;LS;0;Alaska Weathervane Scallops;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://akr-mapping.fakr.noaa.gov/Website/EFH/IndexInfo/Scallops.htm;;N;http://www.fakr.noaa.gov/npfmc/fmp/scallop/ScallopFMP04.pdf;;akefh1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

//Alaska HAPCs start here 

INFONP[78] = "North Pacific;Alaska Seamount Habitat Protection Area;;Y;1;;http://www.fakr.noaa.gov/analyses/efh/HAPCea0406.pdf;http://www.fakr.noaa.gov/npfmc/current_issues/HAPC/HAPCmotion205.pdf;;Y;;;hapcok1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[79] = "North Pacific;Gulf of Alaska Coral Habitat Protection Area;;Y;1;;http://www.fakr.noaa.gov/analyses/efh/HAPCea0406.pdf;http://www.fakr.noaa.gov/npfmc/current_issues/HAPC/HAPCmotion205.pdf;;Y;;;hapcok1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";

INFONP[80] = "North Pacific;Bowers Ridge Habitat Conservation Zone;;Y;1;;http://www.fakr.noaa.gov/npfmc/fmp/fmp.htm;http://www.fakr.noaa.gov/npfmc/current_issues/HAPC/HAPCmotion205.pdf;;Y;;;hapcok1;;http://www.fakr.noaa.gov/habitat/efhshp/default.htm";



//SOUTHEAST 
//SOUTH ATLANTIC DATA ARRAY



var INFOSA = Array();

var tmpSAArray = "";

tmpSAArray  += "South Atlantic;White Shrimp;Amendment 3 (1998);SM;0;South Atlantic Shrimp;http://www.safmc.net/Library/Shrimp/tabid/413/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan165-168.pdf;;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Shrimp%20EFH.htm;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Rock Shrimp;Amendment 3 (1998);SM;0;South Atlantic Shrimp;http://www.safmc.net/Library/Shrimp/tabid/413/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan165-168.pdf;;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Shrimp%20EFH.htm;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Brown Shrimp;Amendment 3 (1998);SM;0;South Atlantic Shrimp;http://www.safmc.net/Library/Shrimp/tabid/413/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan165-168.pdf;;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Shrimp%20EFH.htm;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Pink Shrimp;Amendment 3 (1998);SM;0;South Atlantic Shrimp;http://www.safmc.net/Library/Shrimp/tabid/413/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan165-168.pdf;;N;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Shrimp%20EFH.htm;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Golden Crab;Amendment 1 (1998);SM;0;South Atlantic Golden Crab;http://www.safmc.net/Library/GoldenCrab/tabid/411/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Golden%20Crab%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Jonah Crab;Amendment 1 (1998);SM;0;South Atlantic Golden Crab;http://www.safmc.net/Library/GoldenCrab/tabid/411/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Golden%20Crab%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Red Crab;Amendment 1 (1998);SM;0;South Atlantic Golden Crab;http://www.safmc.net/Library/GoldenCrab/tabid/411/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Golden%20Crab%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Red Drum;;Y;0;Atlantic Coast Red Drum;;;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Red%20Drum%20EFH.htm;habitatCoastlineEFH;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Wahoo;Dolphin Wahoo FMP (2003);N;0;Dolphin Wahoo ;http://www.safmc.net/Library/Dolphin/Wahoo/tabid/410/Default.aspx;http://www.safmc.net/Portals/6/Library/FMP/DolphinWahoo/DolphinWahooFMP.pdf;304;N;;;groupSpecies;;";

tmpSAArray  += "~South Atlantic;Mutton Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Gray (Mangrove) Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Blue Runner; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Crevalle Jack; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Atlantic Spadefish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Sheepshead; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Nassau Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Yellowedge Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Lane Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Queen Triggerfish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Ocean Triggerfish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Yellow Jack; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Bar Jack; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Lesser Amberjack; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Almaco Jack; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Banded Rudderfish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Black Margate; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Porkfish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Margate; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Tomtate; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Smallmouth Grunt; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;French Grunt; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Spanish Grunt; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Cottonwick; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Sailors Choice; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Bluestriped Grunt; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Puddingwife; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Black Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Queen Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Schoolmaster; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Blackfin Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Cubera Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Mahogany Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Dog Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Silk Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Blueline Tilefish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Sand Tilefish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Bank Sea Bass; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Rock Sea Bass; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Rock Hind; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Graysby; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Coney; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Red Hind; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Misty Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Yellowmouth Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Tiger Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Yellowfin Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Grass Porgy; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Jolthead Porgy; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Saucereye Porgy; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Whitebone Porgy; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Knobbed Porgy; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Longspine Porgy; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Vermilion Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Red Snapper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Snowy Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Tilefish ; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Red Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Black Sea Bass; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Gag; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Greater Amberjack; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Scamp; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;White Grunt; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Black Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Gray Triggerfish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Hogfish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Red Porgy; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Speckled Hind; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Warsaw Grouper; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Wreckfish; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Scup; Amendment 10 (1998);SM;0;South Atlantic Snapper-Grouper;http://www.safmc.net/Library/SnapperGrouper/tabid/415/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Fire Corals; Amendment 4 (1998);SM;0;Coral, Coral Reefs and Live / Hard Bottom Habitats of the South Atlantic Region;http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;8;N;;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Hydrocorals;;SM;0;Coral, Coral Reefs and Live / Hard Bottom Habitats of the South Atlantic Region;http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;8;N;;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Octocorals;;SM;0;Coral, Coral Reefs and Live / Hard Bottom Habitats of the South Atlantic Region;http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;8;N;;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Stony Corals;;SM;0;Coral, Coral Reefs and Live / Hard Bottom Habitats of the South Atlantic Region;http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;8;N;;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Black Corals;;SM;0;Coral, Coral Reefs and Live / Hard Bottom Habitats of the South Atlantic Region;http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;8;N;;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Sargassum;Sargassum FMP (2002);N;0;Pelagic Sargassum Habitat of the SA Region;http://www.safmc.net/Library/Sargassum/tabid/414/Default.aspx;http://www.safmc.net/Portals/6/Library/FMP/Sargassum/SargFMP.pdf;109;N;;;;groupSpecies;;";

//inserting co managed 

tmpSAArray  += "~South Atlantic;King Mackerel - Atlantic ;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Spanish Mackerel - Atlantic ;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;19;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Little Tunny;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;20;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Cero Mackerel;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;21;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Cobia;;SM;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;22;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";


tmpSAArray  += "~South Atlantic;Spiny Lobster;;SM;0;Gulf of Mexico / South Atlantic Spiny Lobster (SAFMC FMP- Amendment 5 1998);http://www.gulfcouncil.org/;;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Spiny%20Lobster%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Slipper Lobster;;SM;0;Gulf of Mexico / South Atlantic Spiny Lobster (SAFMC FMP- Amendment 5 1998);http://www.gulfcouncil.org/;;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Spiny%20Lobster%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

///HAPC start

tmpSAArray  += "~South Atlantic;Dolphin/Wahoo;;Y;1;Dolphin Wahoo (2003);http://www.safmc.net/Library/Dolphin/Wahoo/tabid/410/Default.aspx;http://www.safmc.net/Portals/6/Library/FMP/DolphinWahoo/DolphinWahooFMP.pdf;313;Y;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/dolphin-wahoo%20efh-hapc.htm;hapcok1;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Oculina Bank (extended);;Y;1;Coral FMP (2000?- no amend for 2000);http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan16-144.pdf;60;Y;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coral,%20Coral%20Reef%20and%20Live_Hard%20Bottom%20EFH-HAPC.htm;hapcok1;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Satellite Oculina #1;;Y;1;-;http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan16-144.pdf;60;Y;;;hapcok1;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Satellite Oculina #2;;Y;1;-;http://www.safmc.net/Library/Coral/tabid/409/Default.aspx;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan16-144.pdf;60;Y;;;hapcok1;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Penaid Shrimp;;Y;0;Shrimp- Amendment 3;http://www.safmc.net/ecosystem/EcosystemManagement/HabitatProtection/SAFMCHabitatPlan/tabid/80/Default.aspx#EFHAm;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan165-168.pdf;;Y;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Shrimp%20EFH-HAPC.htm;LowRescoastlineHAPC;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Snapper-Groupder;;Y;0;South Atlantic Snapper-Grouper: Amendment 10;http://www.safmc.net/ecosystem/EcosystemManagement/HabitatProtection/SAFMCHabitatPlan/tabid/80/Default.aspx#EFHAm;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;Y;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH-HAPC.htm;habitatCoastlineHAPC;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Spiny Lobster;;Y;0;Spiny Lobster- Amend 5;http://www.safmc.net/ecosystem/EcosystemManagement/HabitatProtection/SAFMCHabitatPlan/tabid/80/Default.aspx#EFHAm;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;6;Y;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Spiny%20Lobster%20EFH-HAPC.htm;habcGen;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Coastal Migratory Pelagics;;N;0;CMP- Amend 10;http://www.safmc.net/ecosystem/EcosystemManagement/HabitatProtection/SAFMCHabitatPlan/tabid/80/Default.aspx#EFHAm;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan217-230.pdf;12;Y;;groupSpecies;;";

tmpSAArray  += "~South Atlantic;Golden Crab;;N;0;Golden Crab - Amendment 1;http://www.safmc.net/ecosystem/EcosystemManagement/HabitatProtection/SAFMCHabitatPlan/tabid/80/Default.aspx#EFHAm;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;;Y;;groupSpecies;;";

tmpSAArray  += "~South Atlantic;Coral reef, live hard bottom;;Y;0;Coral FMP- Amend 4;http://www.safmc.net/ecosystem/EcosystemManagement/HabitatProtection/SAFMCHabitatPlan/tabid/80/Default.aspx#EFHAm;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan239-287.pdf;8;Y;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coral,%20Coral%20Reef%20and%20Live_Hard%20Bottom%20EFH-HAPC.htm;habcGen;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Red Drum;;Y;0;Atlantic Coast Red Drum- Amend 1;http://www.safmc.net/ecosystem/EcosystemManagement/HabitatProtection/SAFMCHabitatPlan/tabid/80/Default.aspx#EFHAm;http://ocean.floridamarine.org/efh_coral/pdfs/Habitat_Plan/HabitatPlan195-210.pdf;3;Y;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Red%20Drum%20EFH-HAPC.htm;habitatCoastlineHAPC;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

tmpSAArray  += "~South Atlantic;Sargassum;;N;0;Sargassum Plan 2002;http://www.safmc.net/Library/Sargassum/tabid/414/Default.aspx;http://www.safmc.net/Portals/6/Library/FMP/Sargassum/SargFMP.pdf;119;Y;;groupSpecies;;";


INFOSA = tmpSAArray.split("~");


//CO-MANAGED SOUTH-ATLANTIC/GULF OF MEXICO
var lsz = 13;

var INFOSAGM = Array([lsz]);

INFOSAGM[0] = "Species co-managed by South Atlantic-Gulf of Mexico;Goliath Grouper;;Y;0;South Atlantic Snapper-Grouper and Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[1] = "Species co-managed by South Atlantic-Gulf of Mexico;Dolphin;;Y;0;Dolphin Wahoo and Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic;http://www.gulfcouncil.org/;;;N;;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[2] = "Species co-managed by South Atlantic-Gulf of Mexico;King Mackerel - Gulf ;;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;16;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[3] = "Species co-managed by South Atlantic-Gulf of Mexico;King Mackerel - Atlantic ;;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;17;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[4] = "Species co-managed by South Atlantic-Gulf of Mexico;Spanish Mackerel - Gulf ;;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;18;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[5] = "Species co-managed by South Atlantic-Gulf of Mexico;Spanish Mackerel - Atlantic ;;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;19;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[6] = "Species co-managed by South Atlantic-Gulf of Mexico;Little Tunny;;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;20;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[7] = "Species co-managed by South Atlantic-Gulf of Mexico;Cero Mackerel;;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;21;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[8] = "Species co-managed by South Atlantic-Gulf of Mexico;Cobia;;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;22;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Coastal%20Migratory%20Pelagics%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[9] = "Species co-managed by South Atlantic-Gulf of Mexico;Bluefish - (Gulf of Mexico only);;Y;0;Coastal Migratory Pelagics of the Gulf of Mexico and South Atlantic (1998);http://www.gulfcouncil.org/;http://www.gulfcouncil.org/Beta/GMFMCWeb/downloads/FINAL3_EFH_Amendment.pdf;25;N;;;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[10] = "Species co-managed by South Atlantic-Gulf of Mexico;Yellowtail Snapper;;Y;0;South Atlantic Snapper-Grouper and Reef Fish Resources of the Gulf of Mexico;http://www.gulfcouncil.org/;;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Snapper%20Grouper%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[11] = "Species co-managed by South Atlantic-Gulf of Mexico;Spiny Lobster;;Y;0;Gulf of Mexico / South Atlantic Spiny Lobster (SAFMC FMP- Amendment 5 1998);http://www.gulfcouncil.org/;;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Spiny%20Lobster%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

INFOSAGM[12] = "Species co-managed by South Atlantic-Gulf of Mexico;Slipper Lobster;;Y;0;Gulf of Mexico / South Atlantic Spiny Lobster (SAFMC FMP- Amendment 5 1998);http://www.gulfcouncil.org/;;;N;Y;http://ocean.floridamarine.org/efh_coral/ims/dbGroupTOC/metadata/Spiny%20Lobster%20EFH.htm;groupSpecies;;http://ocean.floridamarine.org/efh%5Fcoral/Description_Layers.htm";

function helpwindow(name,codetext,imageType){
	//var YwindowPos = window.event.clientY;
	//alert(codetext)
	//document.getElementById("helpWindow").style.width = "80%"

	var helpCode="";
	helpCode+='<table class="help">';
	helpCode+='<tr><td class="helpHeading">';
	helpCode+='<font class="helpheading">'+name+'</font></td>';
	helpCode+='<td class="closeButton" ><input class="btnSmall" onmouseover="this.className=\'btnSmall btnhov\'" onmouseout="this.className=\'btnSmall\'" type="button" value="X   close" onclick=closeHelpWindow() />&nbsp;&nbsp;&nbsp</td></tr>';
	if (imageType == "warning"){
		helpCode+='<tr><td colspan="2" class="helpContent"><img border="none" src="../images/warning.gif">'
	}else{
		helpCode+='<tr><td colspan="2" class="helpContent"><img border="1" src="../images/yellowcheck.gif">'
	}
	helpCode+='&nbsp;'+codetext+'</td></tr>';	
	helpCode+='</table>';

	//window.event.clientY
	//alert(YwindowPos)
	//document.getElementById("helpWindow").style.top = window.event.clientY;
	if ((yMousePos-80)<=yMousePosMax){
		document.getElementById("helpWindow").style.top = (yMousePos)+"px"
	}else if ((yMousePos+80)>=yMousePosBottom){
		document.getElementById("helpWindow").style.top = (yMousePos-170)+"px"
	}else{
		document.getElementById("helpWindow").style.top = (yMousePos - 80)+"px"
	}
	document.getElementById("helpWindow").style.left = (xMousePos - 370)+"px"
	document.getElementById("helpWindow").style.display = "block"
	//alert(helpCode)
	document.getElementById("helpWindow").innerHTML = helpCode;
	

}
//----------------------------------------------
function closeHelpWindow(){
//gMap.openInfoWindowHtml(gMap.getCenter(), helpContent, opts);
//display:none
document.getElementById("helpWindow").style.display = "none"
document.getElementById("helpWindow").innerHTML="";
}

function captureEvents(){
	if (document.layers) { // Netscape
	    document.captureEvents(Event.MOUSEMOVE);
	    document.onmousemove = captureMousePosition;
	} else if (document.all) { // Internet Explorer
	    document.onmousemove = captureMousePosition;
	} else if (document.getElementById) { // Netcsape 6
	    document.onmousemove = captureMousePosition;
	}
}

// Global variables
var xMousePos = 0; // Horizontal position of the mouse on the screen
var yMousePos = 0; // Vertical position of the mouse on the screen
var xMousePosMax = 0; // Width of the page
var yMousePosMax = 0; // Height of the page

function captureMousePosition(e) {
    if (document.layers) {
        // When the page scrolls in Netscape, the event's mouse position
        // reflects the absolute position on the screen. innerHight/Width
        // is the position from the top/left of the screen that the user is
        // looking at. pageX/YOffset is the amount that the user has
        // scrolled into the page. So the values will be in relation to
        // each other as the total offsets into the page, no matter if
        // the user has scrolled or not.
        xMousePos = e.pageX;
        yMousePos = e.pageY;
        xMousePosMax = window.innerWidth+window.pageXOffset;
        yMousePosMax = window.pageYOffset ;
		yMousePosBottom = window.pageYOffset +window.innerHeight;
		//ypageYoffset = window.pageYOffset;
    } else if (document.all) {
        // When the page scrolls in IE, the event's mouse position
        // reflects the position from the top/left of the screen the
        // user is looking at. scrollLeft/Top is the amount the user
        // has scrolled into the page. clientWidth/Height is the height/
        // width of the current page the user is looking at. So, to be
        // consistent with Netscape (above), add the scroll offsets to
        // both so we end up with an absolute value on the page, no
        // matter if the user has scrolled or not.
        xMousePos = window.event.x+document.body.scrollLeft;
        yMousePos = window.event.y+document.body.scrollTop;
        xMousePosMax = document.body.clientWidth+document.body.scrollLeft;
        yMousePosMax = document.body.scrollTop;
		yMousePosBottom = document.body.scrollTop +document.body.clientHeight;
    } else if (document.getElementById) {
        // Netscape 6 behaves the same as Netscape 4 in this regard
        xMousePos = e.pageX;
        yMousePos = e.pageY;
        xMousePosMax = window.innerWidth+window.pageXOffset;
        yMousePosMax = window.pageYOffset;
		yMousePosBottom = window.pageYOffset +window.innerHeight;
    }
}

function hmsAlert(pagenum){
   //alert(pagenum)
   var r=confirm("The selected PDF document exceeds 45 MB in size and may take several minutes to download. \nDo you want to continue with the download?");
       if (r==true){
              window.open('http://www.nmfs.noaa.gov/sfa/hms/Amendment2/FEIS%20AppendixB.pdf#page='+pagenum)
         }
}  

