  document.write("<style type='text/css'>")
  document.write("<!--")
  document.write("html  {margin:0px; padding:0px; font-family:Arial, Helvetica, sans-serif; font-size:10pt;}")
  document.write("body  {margin:20px; padding:0px; background-color: #9fadb6; background-image:url(images/helbg.gif); background-repeat: repeat-x;}")
  document.write("h1	{color:#ee9933; font-size:18px; font-family: Verdana, Arial, Helvetica, sans-serif}")
  document.write("h2	{color:#ee9933; font-size:18px; font-family: Verdana, Arial, Helvetica, sans-serif}")
  document.write("h3	{color:black; font-size:16px; font-family: Verdana, Arial, Helvetica, sans-serif}")
  document.write("h4	{color:black; font-size:14px; font-family: 'New Times Roman'}")
  document.write("li    {color:black; font-size:12px; font-family: 'New Times Roman'}")
  document.write("p	{font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif}")
  document.write("pre   {color:#994400; font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif}")
  document.write("ul    {color:#994400; font-size:12px; font-family: Verdana, Arial, Helvetica, sans-serif}")
  document.write("table	{text-align:left; color:#ee9933; font-size:18px; font-family: Verdana, Arial, Helvetica, sans-serif}")
  document.write(".SubTitle { font-family: Tahoma, Verdana, sans-serif; font-size: 16px; font-weight: bold; color: darkblue; border: 1px solid #cccccc; background: #efefef; padding: 4px; }")
  //document.write(".SubTitle { font-family: Tahoma, Verdana, sans-serif; font-size: 16px; font-weight: bold; color: darkblue; border: 1px solid #cccccc; background: #DFE7FF; padding: 4px; }")
  
  document.write(".Title  {text-align:left; font-family: tahoma, verdana, sans-serif; background: #ffffdf; color:darkblue; font-size: 16px; border: 1px solid #cccccc; font-weight: bold; padding: 4px;}")
  document.write("a        {color: darkblue; font-size:14px; font-weight: bold; text-decoration: none}")
  document.write("b       {color: white; text-decoration: none}")
  document.write("a:hover {color: gray;}")
  document.write(".transparent {")	
  document.write("filter:alpha(opacity=80);")
  document.write("background-color:Steelblue;")
  document.write("display:none;")
  document.write("width:250;")
  document.write("height:100;")
  document.write("position:absolute;")
  document.write("color: white;")
  document.write("border: 2 yellow solid;}")
  document.write(".Menu_Head {filter:alpha(opacity=80); background-color: #6699cc; color: white; font-weight: bold; cursor: pointer; width: 100%;}")
  document.write(".Menu_Items {filter:alpha(opacity=100); background-color: #ffffdf; color: white; padding: 10; width: 150; display: block;}")
  document.write(".Menu_Label { background-color: #ffffdf; padding: 1px; display: block; border-left: 1px solid #cccccc; border-top: 1px solid #cccccc; border-right: 1px solid #cccccc; border-bottom: 1px solid #aaaaaa; width:100%; padding-left: 25px; text-align:left;}")
  document.write(".Tab_Under { font-size:12px; font-style: italic; background-color: #ffffdf; color:darkblue; border-left: 1px solid #cccccc; border-bottom: 1px solid #cccccc; border-right: 1px solid #cccccc; width:100%;  padding: 1px 1px 1px 10px; height: 20px;}")
  
  document.write(".Tab_On { font-size:12px; font-style: italic; background-color: #ffffdf; color:darkblue; border-left: 1px solid #cccccc; border-bottom: 1px solid #cccccc; border-right: 1px solid #cccccc; width:100%; padding-left: 20px; padding-right: 2px; padding-top: 2px; padding-bottom: 2px; text-align:left;}")
  
  
  // document.write(".Menu_Items {filter:alpha(opacity=100); background-color:#DBEAF5 ; color: white; padding: 10; width: 140; display: block;}")
  
  document.write(".Description {filter:alpha(opacity=90); background-color: #6699cc; display: none; width: 190; height: 90; position: absolute; border: 1 solid #006699;}")
  document.write(".DescTitle {background-color: #006699; color: white; font-weight: bold; width: 190;}")
  
  document.write(".bubbleleft {background-image:url(images/bubbleleft.gif); height:24px;}")
  document.write(".bubbleright {background-image:url(images/bubbleright.gif); background-repeat:repeat; height:24px;}")
  document.write(".bubblemiddle {font-weight:bold; font-size:9pt; background-image:url(images/bubblemiddle.gif); color:#445f76; line-height:18pt; font-family:Arial,Helvetica,Sans-Serif; height:24px;}")
  document.write("--></style>")
  
function high(which2){
 theobject=which2
 highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
 clearInterval(highlighting)
 if (which2.style.MozOpacity)
    which2.style.MozOpacity=0.1
 else if (which2.filters)
    which2.filters.alpha.opacity=10
}
function med(which2){
 clearInterval(highlighting)
 if (which2.style.MozOpacity)
    which2.style.MozOpacity=0.3
 else if (which2.filters)
    which2.filters.alpha.opacity=30
}
function highlightit(cur2){
 if (cur2.style.MozOpacity<1)
    cur2.style.MozOpacity=parseFloat(cur2.style.MozOpacity)+0.1
 else if (cur2.filters&&cur2.filters.alpha.opacity<100)
    cur2.filters.alpha.opacity+=10
 else if (window.highlighting)
    clearInterval(highlighting)
}