var d=new Date();
var monthname=new Array("января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря");
var weekname=new Array("Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота");
var TODAY = weekname[d.getDay()] + ", " + d.getDate() + " " + monthname[d.getMonth()] + " " + d.getFullYear();
var visibles=new Array(0,0,0,0,0);
function explore(id) {
  obj = document.getElementById("sm"+id); 
  if (visibles[id-1]==0) {
   obj.style.overflow="visible";
   obj.style.height="auto";
   visibles[id-1]=1;
  } else {
   obj.style.overflow="hidden";
   obj.style.height="1px";
   visibles[id-1]=0;
  }
 }

function getphones() {
  var x = Math.floor(Math.random()*2);
  var a = Array("тел: (495) 364-94-73","тел: (495) 970-38-56");
  if (x == 0) { p = a[0]+"<br />"+a[1]+"<br />"; }
    else if (x == 1) { p = a[1]+"<br />"+a[0]+"<br />"; }
  return p;
}
 
function loadimg(color) {
//id = "f07";
  image = document.getElementById("mainpic");
  image.src = "empty.gif";
  if (document.getElementById("withdesk").checked) dn="d"; else dn="n"; 
  if (color == "Зеленый") color = "gn";
  if (color == "Бежевый") color = "be";
  if (color == "Черный") color = "bk";
  if (color == "Серый") color = "gr";
  if (color == "Салатовый") color = "lm";
  if (color == "Синий") color = "bl";
  if (color == "Розовый") color = "pn";
  if (color == "Белый") color = "wt";
  image.src = "polygran-"+id+"-"+color+"-"+dn+".png";
}

function fiximg(state) {
  image = document.getElementById("mainpic");
  var str = " ";
  str = image.src;
  var old = str;
  if (state) str = str.replace("-n.","-d.");
    else str = str.replace("-d.","-n.");
  image.src = str;
//  alert(state+": "+old+" -> "+str);     
}


