function BL_TD_light(pOb, bLight)
{
   if (pOb)
   {
      if (bLight)
      {
         pOb.style.backgroundColor='#000099';
         pOb.style.color='#FFFFFF';
      }
      else
      {
         pOb.style.backgroundColor='#F0EAC5';
         pOb.style.color='';
      }
   }
}

function BL_LHM()
{
   var n = 0;
   var s = new Array();
   
   s.push("<td valign='top' align='center' width='121px' rowspan='2'>");
   s.push("<table cellpadding='0' cellspacing='0' border='0' height='100%' width='90px' style='font-size: 10pt;'>");
   s.push("<tr><td height='1'>&nbsp </td></tr>");

   for (n = 0; n < mCount; n++)
   {
      if (mLink[n] != "")
      {
        s.push("<tr><td ");
        s.push(" style='cursor:pointer; border-left: 1 solid; border-right: 1 solid; border-top: 1 solid; border-bottom: 1 solid; border-left-color: #C0C0C0; border-top-color: #C0C0C0;border-bottom-color: #FFFFFF;border-right-color: #FFFFFF'");
        s.push(" bgcolor=#F0EAC5 align='center' height='1' align='right' onmouseover='BL_TD_light(this,1);' onmouseout='BL_TD_light(this, 0);'");
        s.push(" onclick='document.location=\"");
        s.push(mLink[n]);
        s.push("\"'>");
        s.push(mItem[n]);
        s.push("</td></tr>");
        s.push("<tr><td height='1' align='right' >&nbsp</td></tr>");
      }
   }

   s.push("<tr><td valign='bottom'><p valign='bottom' align='center'><font size='1' color='white'>Site Copyright <br>© 2005 DTPSoft</font></p></td></tr>");
   s.push("</table></td>");

   document.write(s.join(""));
}