// ------------------------------- //
// -------- Start of File -------- //
// ------------------------------- //
// ----------------------------------------------------------- // 
// JavaScript File Name: gcast_legends.js 
// Browser support: Internet Explorer, Netscape, Firefox, Chrome 
// Original Author: NWS Miami   
// File Creation Date: 05/29/2008 
// Date Last Modified: 09/10/2008
//
// Version control: 1.01
//
// Support Team:
//
// Contributors:    
// ----------------------------------------------------------- // 
// ------------- Program Description and Details ------------- // 
// ----------------------------------------------------------- // 
/*
External JavaScript code for MFL Graphicast legends.

<script language="javascript" src="/mfl/js/gcast_legends.js"></script>

*/
// ----------------------------------------------------------- // 
// SCRIPT CONTENT BEGINS HERE.

function popUpKeyTable() {
KeyTablewin = window.open('', 'KeyTable', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=400,left=180,top=20');
KeyTablewin.document.write("<html>\n");
KeyTablewin.document.write("<head>\n");
KeyTablewin.document.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\"/>\n");
KeyTablewin.document.write("<title>Graphicast Legends</title>\n");
KeyTablewin.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"/mfl/css/gcast/graphicast.css\" />\n");
KeyTablewin.document.write("</head>\n");
KeyTablewin.document.write("<body bgcolor=\"#ffffff\" link=\"#0000ff\" vlink=\"#800080\">\n");

KeyTablewin.document.write("<table summary=\"Graphicast Legends\" cellspacing=\"2\" cellpadding=\"2\"  border=\"4\" width=\"525\" class=\"nwsbkgrnd\">\n");
KeyTablewin.document.write("<tr>\n");
KeyTablewin.document.write("<td align=\"center\" class=\"noaabkgrnd\" colspan=\"4\"><span class=\"goldsub2\">Graphicast Legends</span><br /></td>\n");
KeyTablewin.document.write("</tr>\n");
KeyTablewin.document.write("<tr>\n");
KeyTablewin.document.write("<td align=\"center\" class=\"steelbluebkgrnd\" colspan=\"4\"><span class=\"navsub1\">Fronts</span><br /></td>\n");
KeyTablewin.document.write("</tr>\n");
KeyTablewin.document.write("<tr>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/groundColdFront.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;Cold Front</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/lowPressure.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;Low Pressure</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/groundWarmFront.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;Warm Front</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/tropicalStorm.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;Tropical Storm</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("</tr>\n");
KeyTablewin.document.write("<tr>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/groundStationaryFront.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;Stationary Front</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/highPressure.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;High Pressure</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/occludedFront.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;Occluded Front</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("<td align=\"left\" class=\"whitebkgrnd\">\n");
KeyTablewin.document.write("<img src=\"/images/mfl/gcast/icons/hurricane.gif\" alt=\"\" /><span class=\"drkgreen5\">&nbsp;&nbsp;Hurricane</span>\n");
KeyTablewin.document.write("</td>\n");
KeyTablewin.document.write("</tr>\n");
KeyTablewin.document.write("</table>\n");
KeyTablewin.document.write("</body>\n");
KeyTablewin.document.write("</html>\n");
KeyTablewin.document.close();
}

// SCRIPT CONTENT ENDS HERE.
// ----------------------------------------------------------- //
// ------------------------------- //
// --------- End of File --------- //
// ------------------------------- //

