function i(c){
 var cc;
 var ca;
 if (top.cur.c!=c){
  if (top.cur.c!=-1){
   cc="c"+top.cur.c;
   ca="a"+top.cur.c;
   top.frames.c.document.getElementById(cc).style.backgroundColor='#334444';
   top.frames.c.document.getElementById(ca).style.color='white';
  }
  cc="c"+c;
  ca="a"+c;
  top.frames.c.document.getElementById(cc).style.backgroundColor='#FFFF00';
  top.frames.c.document.getElementById(ca).style.color='black';
  top.cur.c=c;
 }
 if (top.cur.t!=-1){
  cc="c"+top.cur.t;
  ca="a"+top.cur.t;
  top.frames.t.document.getElementById(cc).style.backgroundColor='#334444';
  top.frames.t.document.getElementById(ca).style.color='white';
  top.cur.t=-1;
 }
}

function l(u,c,t){
 var cc;
 var ca;
 if (top.cur.c!=c){
  if (top.cur.c!=-1){
   cc="c"+top.cur.c;
   ca="a"+top.cur.c;
   top.frames.c.document.getElementById(cc).style.backgroundColor='#334444';
   top.frames.c.document.getElementById(ca).style.color='white';
  }
  cc="c"+c;
  ca="a"+c;
  top.frames.c.document.getElementById(cc).style.backgroundColor='#FFFF00';
  top.frames.c.document.getElementById(ca).style.color='black';
  top.cur.c=c;
  top.cur.t=t;
  top.frames.t.document.location="../"+u+"/"+u+".html";
 } else {
  if (top.cur.t!=-1){
   cc="c"+top.cur.t;
   ca="a"+top.cur.t;
   top.frames.t.document.getElementById(cc).style.backgroundColor='#334444';
   top.frames.t.document.getElementById(ca).style.color='white';
  }
  top.cur.t=t;
  if (t!=-1){
   cc="c"+t;
   ca="a"+t;
   top.frames.t.document.getElementById(cc).style.backgroundColor='#FFFF00';
   top.frames.t.document.getElementById(ca).style.color='black';
  }
 }
}
