function newBGcolor(idCell, idCell1) {
	eval('document.all.'+idCell+'.style.borderColor = "#FF0000"');
	eval('document.getElementById("' + idCell + '").style.borderColor = "#FF0000"');
	eval('document.all.'+idCell1+'.style.borderColor = "#FF0000"');
	eval('document.getElementById("' + idCell1 + '").style.borderColor = "#FF0000"');
}

function backBGcolor(idCell, idCell1) {
eval('document.all.'+idCell+'.style.borderColor = "#DDDDDD"');
eval('document.getElementById("' + idCell + '").style.borderColor = "#DDDDDD"');
eval('document.all.'+idCell1+'.style.borderColor = "#DDDDDD"');
eval('document.getElementById("' + idCell1 + '").style.borderColor = "#DDDDDD"');
}

function showimg(name, siz, title){
	myWin=open("","G", siz+", status=no,toolbar=no,scrollbars=no");
	myWin.document.open();
	myWin.document.write('<html><title>'+title+'</title><head>');
	myWin.document.write('<meta http-equiv="content-type" content="text/html;charset=windows-1251"></head>');
	myWin.document.write('<body bgcolor=#ffffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0');
	myWin.document.write('<div align="center"><img src="' + name + '" onClick="self.close();" alt="Закрыть окно"></div>');
	myWin.document.write('</body> </html>');
}

function openWindow(url)
{
 var w,h;
 w = 720;
 h = 450;
 w1=window.open(url,'_blank','resizable=yes,menubar=no,status=yes,scrollbars=yes,width='+w+',height='+h);
}
