
//--Big images open--


function openw(width, height, title, file)
{
wind = open ('', '_req_info', 'height=' + height + ', resizable=yes, scrollbars=no, width='+ width);
wind.document.write('<html><head><title>' + title + '</title><link rel="stylesheet" href="includes/aci.css" type="text/css"></head><body bgcolor="#000000" text="#ffffff" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><table cellspacing="0" cellpadding="0" align="center">');
wind.document.write('<tr><td align="center"><img src="' + file + '" border="0" onclick="javascript:window.close()" style="cursor:hand;" class="pic"></td></tr>');
wind.document.write('<tr><td><br><p align="center"><a href="javascript:window.close()" style="font-weight: bold;" class="txt">Закрыть окно</a></p></td></tr>');
wind.document.write('</table></body>');
wind.document.close();
}

//--Employee block--

function employee_block (section){
	if(document.getElementById('eb_title_'+section).className=="css_ep_title css_active"){
		document.getElementById('eb_title_'+section).className="css_ep_title";
		document.getElementById('eb_block_'+section).className="css_ep_block";
	}

	else {
		document.getElementById('eb_title_'+section).className="css_ep_title css_active";
		document.getElementById('eb_block_'+section).className="css_ep_block css_active";
	}
}