function reshowdt(id){

//	alert('!');

	for(var i=0; i < id.length; i++){



		//alert('section id='+id[i]);



		if (document.getElementById("dv"+id[i]).className=="none")



			document.getElementById("dv"+id[i]).className = "";



		else



			document.getElementById("dv"+id[i]).className = "none";



	}



	return;







	for(var i=0; i < id.length; i++){



		//alert('section id='+id[i]);



		if (document.getElementById("dv"+id[i]).style.display=="none")



			document.getElementById("dv"+id[i]).style.display = "";



		else



			document.getElementById("dv"+id[i]).style.display = "none";



	}



}







function opendt(id){



	window.open("details.php?id="+id, "details", "left=200,top=150,width=500,height=300,scrollbars=yes");



}















// Открывает окно с возможностью изменения размеров







function OpenWindowResizable(url, name, width, height) {







	window.open(url, name, 'width=' + width + ', height=' + height + ', toolbar=no, status=no, resizable=yes, scrollbars=yes, left=100, top=' + ((screen.height - height)/2));







//	window.open(url, name, 'width=' + width + ', height=' + height + ', scrollbars=1, resizable=1, left=' + ((screen.width - width)/2) + ', top=' + ((screen.height - height)/2));







}















// Изменяет размер по размеру контента







function imgResize(){
//	alert(
 scroll_sz = 33;
 var resize=false;
 w = document.width;
 if ((document.getElementById("getWidth").width+scroll_sz) > w){
 	w = document.getElementById("getWidth").width+scroll_sz;
 	resize = true;
 	
// 	temp = document.getElementById("getWidth").width+scroll_sz;
// 	mes = 'WIDTH:\n' + temp + '\n' + w + '\n-----------------\n';
// 	alert(mes);
 	
 }
 	
 	
 h = document.height;
 temp = document.getElementById("imgHght").height;
 if (temp>h){
	 h = document.getElementById("imgHght").height;
	 resize = true;
	 
// 	 mes = 'HEIGHT:\n' + temp + '\n' + h + '\n-----------------\n';
// 	 alert(mes);
 }
 
// alert(top.outerHeight);
if(resize){
 if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
    top.outerWidth=w;
    top.outerHeight=h;
   }
   else 
   {
    top.resizeTo(w,h);
   }
 }
}
//	alert(document.getElementById("getSz").width);
}























function bover(obj){







	var css = obj.style;







	css.color = '#FFF';







}















function bout(obj){







	var css = obj.style;







	css.color = '#a0a6bd';







}