function display_title() {
attdate = new Date();
hours = attdate.getHours(); 
 if (hours >= 6) { time_of_day = 'Доброе утро,';}
 if ((hours >= 12) && (hours < 17)) { time_of_day = 'Дорогие';}
 if (hours >= 17) { time_of_day = 'Добрый вечер,';} 
 if ((hours >= 0) && (hours < 6)){ time_of_day = 'Дорогие';} 
document.write(time_of_day + ' друзья!');
}

function Copyring() {
document.write('<hr>');
document.write('<table border="0" width="100%" cellspacing="0" cellpadding="5"><tr><td class=bottom width="100%">');
document.write('<p style="margin-right: 5; margin-top: 0">');
document.write('<font color="#0">© 2001-2008</font> <a href="mailto:vmeste@mail333.com">\"Дорога ВМЕСТЕ\"</a><br>');
document.write('<a href="mailto:dorvmeste@narod.ru">Web-Master</a></p></td></tr></table>');
}

function _week1() {
now = new Date();
var mon = now.getMonth(), da = now.getDate();
var s;  
if ( (mon == 0) && ((da == 6) || (da == 7)))
  s ="<font color='#FF0000'><b>Поздравляем вас&nbsp;<br>c Рождеством Христовым!&nbsp;</b></font>"
else
if ( (mon == 0) && ((da >= 0) && (da < 6)))
  s ="<font color='#FF0000'><b>Поздравляем вас&nbsp;<br>c НОВЫМ ГОДОМ!&nbsp;</b></font>"
else
{
if (now.getDay() == 0)
  s="<font color='#FF0000'><b>Христос Воскрес!&nbsp;<br>С праздником Вас!&nbsp;</b></font>"
else
  s="<font color='#800000'><b>Предай Господу путь твой и уповай на Него, и Он совершит.&nbsp;</b><br><font size='1'>(Псалом 36, стих 5)&nbsp;</font></font>"
}
document.write(s)
}

function scroll_to_top()
{
        if (document.body.scrollTop > "0")
        {
        document.body.scrollTop -= "100";
        scroll(0,document.body.scrollTop);
        setTimeout("scroll_to_top()",10);
        }
}

function waiting()
{
        if(document.getElementById("general").style.display=="none")        
                setTimeout("waiting()",1000);
        else
        document.getElementById("waitingtag").style.display="none";
}

