<!--
// ---------------------------------------------------------
// JavaScript used for dynamic layers functionality  
//  
//  
// ---------------------------------------------------------
window.onerror = null
window.defaultStatus = ''

var initialized = 0
var myMenus = new Array(6)
var menustatus = new Array(6)
var ver = parseInt(navigator.appVersion)
var ns = ((navigator.appName == "Netscape") && (ver > 3) && (ver < 5))
var ns5 = ((navigator.appName == "Netscape") && (ver == 5))
var show_str = (ns)? "show":"visible"
var hide_str = (ns)? "hide":"hidden"
var ie = ((navigator.appVersion.indexOf("MSIE") != -1) && (navigator.appVersion.indexOf("5.") != -1) && (ver > 3))
var dom = document.getElementsByTagName
var great = (ns || ie || dom)
//ie = false


// Generates stylesheet content
function generateStyleSheets() {

   if (great) {
      if (document.all || dom) {
//alert('generateStyleSheets, dom='+dom);
         document.write('<style type="text/css">');
         document.write('<!--');
         document.write('#lyr_menu0 { position: absolute; left: 1px; top: 254px; z-index: 71; visibility: hidden; width: 120px; height: 270px; }');
         document.write('#lyr_menu1 { position:absolute; left:121px; top:254px; z-index:72; visibility:hidden; width:120px; height:270px }');
         document.write('#lyr_menu2 { position:absolute; left:241px; top:254px; z-index:73; visibility:hidden; width:120px; height:270px }');
         document.write('#lyr_menu3 { position:absolute; left:361px; top:254px; z-index:74; visibility:hidden; width:120px; height:270px }');
         document.write('#lyr_menu4 { position:absolute; left:481px; top:254px; z-index:75; visibility:hidden; width:120px; height:270px }');
         document.write('#lyr_menu5 { position:absolute; left:70px; top:90px; z-index:76; visibility:hidden; width:260px }');
         document.write('a:hover { color:#008000 }');
         document.write('a:link { text-decoration:none }');
         document.write('a:visited { text-decoration:none }');
         document.write('.srch { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:8pt }');
         document.write('-->');
         document.write('</style>');
      } else {
         document.write('<style type="text/css">');
         document.write('<!--');
         document.write('a:link { text-decoration:none }');
         document.write('a:visited { text-decoration:none }');
         document.write('.srch { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:8pt }');
         document.write('-->');
         document.write('</style>');
      }
   }   
}


