// Часы 
function ShowClock(){
	var date=new Date();
	var hours=date.getHours();
	var minutes=date.getMinutes();
	if (hours<10) hours="0"+hours;
	if (minutes<10) minutes="0"+minutes;
	//var sec=date.getSeconds();
	document.getElementById("clock").innerHTML=hours+":"+minutes;//+":"+sec;
	setTimeout("ShowClock()",1000);
}

// Открытие фоток в окне под размер фотки
function OpenPictures(pic_src){
	//alert(pic_src)'+event.Left+'
	w=window.open('','win','left=20, top=30, width=100,height=100,titlebar=no,toolbar=no,directories=no,status=no,scrollbars=auto,resize=yes,menubar=no');
	w.document.write("<"+"html><"+"body style='margin:0px;' onLoad='loadImg();'>")
	w.document.write("<img src='"+pic_src+"' id='imgsrc' border='0' OnClick='window.close();' title='Закрыть окно' style='cursor:hand;'>")
	w.document.write("<"+"script>")
	w.document.write("function loadImg(){")
	w.document.write("w=document.getElementById('imgsrc').width;")
	w.document.write("h=document.getElementById('imgsrc').height;")
	//w.document.write("alert(w+'/'+h);")
	w.document.write("window"+".resizeTo(w+10,h+30);")
	w.document.write("}")
	w.document.write("")
	w.document.write("</"+"script>")
	w.document.write("</"+"body></"+"html>")
	w.document.close();
	return false;
}

// Функция показа-скрытия объекта
function ShowHideDiv(x) {
  if(document.getElementById(x).style.display=="none") {document.getElementById(x).style.display="block"}
  else {document.getElementById(x).style.display="none"}
  return false;
}


// О нас / Лица компании
function comFace(id) 
{
	// убираем все дивы и картинки
	document.getElementById('t0').style.display = 'none';
	var divs = document.getElementById('comTextDivs').getElementsByTagName('DIV');
	for(var no=0;no<divs.length;no++) divs[no].style.display='none'; 
	var divs = document.getElementById('comTextImages').getElementsByTagName('img');
	for(var no=0;no<divs.length;no++) divs[no].style.display='none'; 
		
	/*img = document.getElementById('comImg');
	img.src = 'design/images/photo_'+id+'.jpg';*/
	//alert ('design/images/photo_'+id+'.jpg');
	if (document.getElementById('t'+id)) document.getElementById('t'+id).style.display = 'block';
	if (document.getElementById('img'+id)) document.getElementById('img'+id).style.display = 'block';
}
