function menu(active,end,url,text)
 {
  if (active > 0) {
    document.write("<span style='font-size:x-small'>");
   if (active == 1) {   
    document.write("<a href='", url, "'>", text, "</a>");
   } else {
    document.write("<font color='yellow'>&nbsp;", text, "&nbsp;</font>");
   }
   if (end == 0) {
    document.write("&nbsp;-&nbsp;");
   }	
   document.write("</span>");
  } 
 }
 
function line(active,url,text)
 {
  if (active > 0) {
   if (active == 1) {   
    document.write("<tr><td height='19' valign='middle'>");
    document.write("<img src='pics/0.gif' width='5' height='13' border='0' align='bottom'>");
    document.write("<a href='", url, "' class='navi-1'><b>&nbsp;-&nbsp;&nbsp;");
    document.write(text, "</b></a></td>");
   } else {
    document.write("<tr><td height='19' valign='middle'>");
    document.write("<img src='pics/0.gif' width='5' height='13' border='0' align='bottom'>");
    document.write("<span class='navi-1'><b>&nbsp;-&nbsp;&nbsp;");
    document.write(text, "</b></span></td>");
   }
   document.write("</tr><tr><td><img src='images/0.gif' width='1' height='4' border='0' vspace='0'></td></tr>");
  } 

 }

