function GetFontSizeFromCookies(){
  var Cookie = '' + document.cookie;
  var CurFnt = Cookie.match(/READFNT=(\d+)/);
  if (CurFnt && CurFnt[1]){
    return CurFnt[1];
  } else {
    return 100;
  }
}

function SaveFontSize(NewSize){
  var NewCook=''+document.cookie;
  NewCook=NewCook.replace(/READFNT=\d+(;\s+)?/,'');
  NewCook='READFNT='+NewSize+';'+NewCook;
  document.cookie=NewCook;
}

var FontSize=GetFontSizeFromCookies();
document.getElementById('f').style.fontSize=FontSize+'%';

function FontSetup(Size){
  FontSize=FontSize*1+Size*1;
  SaveFontSize(FontSize);
  document.getElementById('f').style.fontSize=FontSize+'%';
}

function PrintFontNav(){
  document.write('<p><a href="javascript:FontSetup(-10)">Уменьшить шрифт</a> | <a href="javascript:FontSetup(10)">Увеличить шрифт</a></p>');
}

function PrintFontNav1(){
  document.write('| <a href="javascript:FontSetup(-10)">Уменьшить шрифт</a> | <a href="javascript:FontSetup(10)">Увеличить шрифт</a>');
}

function FontInit(){
  document.getElementById('f').style.fontSize=GetFontSizeFromCookies()+'%';
}
