
function makevisible(cur,which) {
  if (which == 0)
    cur.filters.alpha.opacity = 100;
  else
    cur.filters.alpha.opacity = 35;
}

function zoom(img, w, h) {
  w = w - 0 + 40;
  h = h - 0 + 40;
  window.open(img,'zoom'+w+h,'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h);
}

function ins_contacts() {
  contacts.innerHTML = '<a href="mailto:dolvoshod@mail.ru">dolvoshod@mail.ru</a>';
}

function timetable(){
  var theDate = new Date();
  Time_Hours = theDate.getHours();
  Time_Minutes = theDate.getMinutes();
  Time_Hours = Time_Hours + theDate.getTimezoneOffset() / 60 + 7; // чтоб точно было Северское время (+7 летом, + 6 - зимой)
  l_event = "";
  if (Time_Hours == 8 && Time_Minutes >= 30 && Time_Minutes <= 45)
    {l_event = "Подъем, умывание, уборка постелей";}
  if (Time_Hours == 8 && Time_Minutes > 45)
    {l_event = "Зарядка на свежем воздухе";}
  if (Time_Hours == 9 && Time_Minutes < 30)
    {l_event = "Линейка";}
  if (Time_Hours == 9 && Time_Minutes >= 30)
    {l_event = "Завтрак";}
  if ((Time_Hours >= 10) && (Time_Hours < 13 || (Time_Hours == 13 && Time_Minutes <= 30)))
    {l_event = "Бегай, прыгай, твори";}
  if (Time_Hours == 13 && Time_Minutes > 30)
    {l_event = "Обед";}
  if (Time_Hours >= 14 && Time_Hours < 16)
    {l_event = "Два часа молчания";}
  if (Time_Hours == 16 && Time_Minutes >= 30)
    {l_event = "Вкусный полдник";}
  if (Time_Hours >= 17 && Time_Hours < 19)
    {l_event = "Общелагерные мероприятия, спортивные состязания, мероприятия досуга";}
  if (Time_Hours == 19 && Time_Minutes >= 30)
    {l_event = "Ужин";}
  if (Time_Hours >= 20 && Time_Hours < 22)
    {l_event = "Танцевально-развлекательные программы, отрядные огоньки";}
  if (Time_Hours == 21 && Time_Minutes <= 10)
    {l_event = "Кефир";}
  if (Time_Hours == 22 && Time_Minutes <= 30)
    {l_event = "Отбой для младших отрядов";}
  if (Time_Hours == 22 && Time_Minutes > 30)
    {l_event = "Общелагерный отбой";}
  if (Time_Hours >= 23)
    {l_event = "Сон";}
  evnt.innerHTML = l_event;
}

function doAction() {
  stroka=document.pvdsubs.email.value; ind=stroka.indexOf('\@');
  if (ind>0 && ind<stroka.length-1) {
        pvdWin= open("", "pvdwin", "width=350,height=200");
        pvdWin.focus(); pvdWin.document.open();
        pvdWin.document.write("<html><head><title>Обработка данных... </title></head>");
        pvdWin.document.write("<body topmargin=0 bgcolor=#F9F1D7 leftmargin=0 marginwidth=0 marginheight=0>");
        pvdWin.document.write("<table width=100% height=100% align=center><tr><td align=center>Минуточку...</td></tr></table>");
        pvdWin.document.write("</body></html>");
        pvdWin.document.close();
        document.pvdsubs.submit();
       }
  else {
        alert('Введен неверный E-Mail');
       }
}
