function zoom(srcfile) {
	var m = screen.availWidth/2;
	zw = window.open("","zoomwin","width=200,height=200,top=20,left=20,resizable=yes,location=no,scrollbars=no,status=no,toolbar=no,directories=no");
	zwdata = "<html><head><title>GASIS</title><script type='text/javascript'> function rwin() { self.resizeTo(document.images['imgfile'].width+11, document.images['imgfile'].height+31); var sleva = " + m + " - ((document.getElementById('imgfile').width)/2); self.moveTo(sleva,50); } </script></head><body topmargin='0' bottommargin='0' leftmargin='0' rightmargin='0' marginheight='0' marginwidth='0' onload='rwin()'><a href='javascript:self.close()'><img id='imgfile' src=" + srcfile +" alt='закрыть окно' title='закрыть окно' border='0'></a></body></html>";
	zw.document.open();
	zw.document.write(zwdata);
	zw.document.close();
}
function change_border(f,id) {
	if (prev_id!=id)
		if (f==1) document.getElementById('imgs'+id).style.borderColor='#E26429';
		else document.getElementById('imgs'+id).style.borderColor='#ACC9D7';
}
function create_imb(id,simgext,bimgext,nam) {
	var s='<img src="/images/news/'+id+'s.'+simgext+'" border="0" width="275" class="imgb">';
	if (bimgext!='')
		s='<a href="/images/news/'+id+'b.'+bimgext+'" onclick="zoom(\'/images/news/'+id+'b.'+bimgext+'\'); return false;" target="_blank" title="Посмотреть увеличенное изображение">'+s+'</a>';
	document.getElementById('imname').innerHTML=nam;
	document.getElementById('imb').innerHTML=s;
	document.getElementById('imgs'+id).style.borderColor='#FF0000';
	if (prev_id>0) document.getElementById('imgs'+prev_id).style.borderColor='#ACC9D7';
	prev_id=id;
}
