function Is3() {
    var agent = navigator.userAgent.toLowerCase();
    this.major = parseInt(navigator.appVersion);
    this.minor = parseFloat(navigator.appVersion);
    this.ns  = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)));
    this.ns3up = (this.ns && (this.major >= 3));
}

var is3 = new Is3();

function writeFlashMenu() {
   document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0\" ID=sa WIDTH=425 HEIGHT=325>\n");
   document.write("<PARAM NAME=movie VALUE=\"sa.swf\">\n");
   document.write("<PARAM NAME=quality VALUE=high>\n");
   document.write("<PARAM NAME=bgcolor VALUE=#FFFFFF>\n");
   document.write("<EMBED src=\"sa.swf\" quality=high bgcolor=#FFFFFF  WIDTH=425 HEIGHT=325\n");
   document.write("TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></EMBED></OBJECT>\n");
}

function writeNonFlashMenu() {
	document.write("<table width=\"425\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n");
	document.write("<tr valign=\"top\"><td><img src=\"images/sa_map.gif\" width=\"250\" height=\"330\" border=\"0\" alt=\"\" usemap=\"#sa\"></td>\n");
	document.write("<td><p><b>States of the South Atlantic Region </b><br>\n");
	document.write("Click on the state below, on the map to the left, or on the left sidebar.</p>\n");
	document.write("<br><table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n");
	document.write("<tr valign=\"top\"><td><p class=\"level1\">\n");
	document.write("1. <a href=\"browse.phtml?sid=fl\" class=\"level1\">Florida</a><br>\n");
	document.write("2.  <a href=\"browse.phtml?sid=ga\" class=\"level1\">Georgia</a><br>\n");
	document.write("3. <a href=\"browse.phtml?sid=nc\" class=\"level1\">North Carolina</a><br>\n");
	document.write("4. <a href=\"browse.phtml?sid=sc\" class=\"level1\">South Carolina</a><br>\n");
	document.write("5. <a href=\"browse.phtml?sid=va\" class=\"level1\">Viginia</a><br>\n");
	document.write("6. <a href=\"browse.phtml?sid=wv\" class=\"level1\">West Virginia</a></p>\n");
	document.write("</td></tr></table></td></tr></table>\n");
}

