M=new Array;
M=[
["О рейтинге","About"],
["Добавить сайт","Add"],
["Редактировать аккаунт","Edit"],
["Контакты","Contacts"],
["Реклама","Adv"]
];
for(i=0; i<M.length; i++) {M[i][1]="/Admin/"+M[i][1]+".htm"}

function Head(n) {
  Code="\
    <TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=750>\
      <TR>\
        <TD>&nbsp;&nbsp;&nbsp;<A href=/><IMG border=0 hspace=1 src=/logo.gif vspace=1></A></TD>\
      </TR>\
    </TABLE>\
    <TABLE align=center bgColor=#93b2dd border=0 cellPadding=3 cellSpacing=0 width=750>\
    <TR>\
    <TD>\
    <B>&nbsp; \
  ";
  for(i=0; i<M.length; i++) {
    if(i+1==n) {
      Code=Code+"<font color=#336799>"+M[i][0]+"</font>"
    } else {
      Code=Code+"<A href="+M[i][1]+">"+M[i][0]+"</A>"
    }
    if(i!=M.length-1) {Code=Code+"&nbsp | &nbsp"}
  }
  Code=Code+"</B></TD></TR></TABLE>";
  document.write(Code);
  document.write('<img src="http://counter.yadro.ru/hit?r'+escape(document.referrer)+((typeof(screen)=='undefined')?'':';s'+screen.width+'*'+screen.height+'*'+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+';'+Math.random()+'" width=1 height=1 alt="">');
}