function openQuery()	{ //called from main page links to Query STorm Tracks
		if (false)	{ // true == down
			//commented by Jen- samples page was removed 6/05  alert('The interactive mapping portion of this site is temporarily unavailable.\n\nPlease select "View Examples" to view a static version of the site.');
			alert('The interactive mapping portion of this site is temporarily unavailable.');
		}	else	{
			// Mac sniffige stolen from the Ultimate client-side JavaScript client sniff. Version 3.03
			// http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
			var agt=navigator.userAgent.toLowerCase();  // convert all characters to lowercase to simplify testing
			var is_major = parseInt(navigator.appVersion);
			var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
			var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
			var is_ie3    = (is_ie && (is_major < 4));
			var is_ie4    = (is_ie && (is_major == 4) && (agt.indexOf("msie 4")!=-1) );
			var is_ie5up  = (is_ie && !is_ie3 && !is_ie4);
			var is_nav6up = (is_nav6up && (is_major > 6));

			var is_mac    = (agt.indexOf("mac")!=-1);
			/* commented out by Jen- works in IE for Mac 6/28/05
			if (is_ie && is_mac)	{
				strWarning =  'On the Macintosh Operating System, both OS X and Classic, only Mozilla 1.0+\n';
				strWarning += 'and Netscape 6+ are currently supported.\n\n';
				strWarning += 'Mozilla can be downloaded from\n';
				strWarning += 'http://www.mozilla.org';
				alert(strWarning);
			}	else	{ */
				if (is_ie5up || document.getElementById)	{  // document.all check removed -- using IE 5+ specific features
					booContinue = true;
					if (screen.width < 1100 || screen.height < 800)	{
						strWarning = 'WARNING: This site may be difficult to view on your monitor with your current monitor settings.\n\n';
						strWarning += 'This site was designed with an intended minimum resolution of 1024 by 768\n';
						strWarning += 'and a suggested resolution of 1152 by 864.\n\nContinue?';
						booContinue = confirm(strWarning);	// give the user a chance to reset resolution, etc
					}
				
					if (booContinue)	{
						// loading the map early takes too long to be practical. 	
						top.window.location.href= 'Run.html';
						
					}	
				}	else	{
					strWarning = 'Netscape 6+ or Internet Explorer 5.0+ \n'; //(Windows operating system)
					strWarning += 'is required to view the interactive portions of this site.\n\n';
					//commented by Jen- samples page was removed 6/05  strWarning += 'You may click the "View Examples" link to see a static version of the mapping site.';	
					alert(strWarning);
				}
		  //} commented out by Jen- works in IE for Mac 6/28/05
		}	// end of check for down-ness
		return false;
	}
	
	function openViewer()	{ //called in viewer.htm
		if (false)	{ // true == down
			//commented by Jen- samples page was removed 6/05  alert('The interactive mapping portion of this site is temporarily unavailable.\n\nPlease select "View Examples" to view a static version of the site.');
			alert('The interactive mapping portion of this site is temporarily unavailable.');
		}	else	{
			// Mac sniffige stolen from the Ultimate client-side JavaScript client sniff. Version 3.03
			// http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
			var agt=navigator.userAgent.toLowerCase();  // convert all characters to lowercase to simplify testing
			var is_major = parseInt(navigator.appVersion);
			var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
			var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
			var is_ie3    = (is_ie && (is_major < 4));
			var is_ie4    = (is_ie && (is_major == 4) && (agt.indexOf("msie 4")!=-1) );
			var is_ie5up  = (is_ie && !is_ie3 && !is_ie4);
			var is_nav6up = (is_nav6up && (is_major > 6));

			var is_mac    = (agt.indexOf("mac")!=-1);

			/* commented out by Jen- works in IE for Mac 6/28/05
			if (is_ie && is_mac)	{
				strWarning =  'On the Macintosh Operating System, both OS X and Classic, only Mozilla 1.0+\n';
				strWarning += 'and Netscape 6+ are currently supported.\n\n';
				strWarning += 'Mozilla can be downloaded from\n';
				strWarning += 'http://www.mozilla.org';
				alert(strWarning);
			}	else	{ */
				if (is_ie5up || document.getElementById)	{  // document.all check removed -- using IE 5+ specific features
					booContinue = true;
					if (screen.width < 1100 || screen.height < 800)	{
						strWarning = 'WARNING: This site may be difficult to view on your monitor with your current monitor settings.\n\n';
						strWarning += 'This site was designed with an intended minimum resolution of 1024 by 768\n';
						strWarning += 'and a suggested resolution of 1152 by 864.\n\nContinue?';
						booContinue = confirm(strWarning);	// give the user a chance to reset resolution, etc
					}
				
					if (!booContinue)	{
						// loading the map early takes too long to be practical. 	
						//top.window.location.href= 'default.html';
						//Jen made this a !booContinue check and added the next line 9/12/05 so the cancel doesn't keep loading
						parent.window.location='http://hurricane.csc.noaa.gov/hurricanes';
						
					}	
				}	else	{
					strWarning = 'Netscape 6+ or Internet Explorer 5.0+ \n'; //(Windows operating system)
					strWarning += 'is required to view the interactive portions of this site.\n\n';
					//commented by Jen- samples page was removed 6/05  strWarning += 'You may click the "View Examples" link to see a static version of the mapping site.';	
					alert(strWarning);
					parent.window.location='http://hurricane.csc.noaa.gov/hurricanes';
				}
			//} commented out by Jen- works in IE for Mac 6/28/05
		}	// end of check for down-ness
		return false;
	}