<!--Выводит ссылку (в начало) если длина контента больше 1000-->
function writeToInTop() {
    var screenHeight = 0;
    //Определяем реальные значения высоты
    if (self.screen){
        screenHeight = screen.height;
    }
    var elemContent = document.getElementById("right_wrap");
    var contentHeight = elemContent.offsetHeight;
    var elemTop = document.getElementById("header");
    var topHeight = elemTop.offsetHeight;
    document.writeln("<p>&nbsp;</p>");
    if ((screenHeight-topHeight) <= contentHeight) {
        document.writeln('<p class = "inUp"><a href="#oglav">[В начало страницы]</a></p>');
        document.writeln("<p>&nbsp;</p>");
    }
}
writeToInTop();                                            
