function zoom(srcfile) 
{
	var m = screen.availWidth/2;
	zw = window.open("","zoomwin","width=200,height=400,top=20,left=20,resizable=yes,location=no,scrollbars=no,status=no,toolbar=no,directories=no");
	zwdata = "<html><head><title>Диметрос</title><base href=http://www.dimetros.ru><script type='text/javascript'> function rwin() { self.resizeTo(document.images['imgfile'].width+12, 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 show_sc(srcfile) {
 	window.open(srcfile, "newwindow", "status=no,scrollbars=yes,menubar=no,resizable=yes,width="+900+",height="+600);
    /*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>Диметрос</title><base href=http://localhost/dimetros/site/><script type='text/javascript'> function rwin() { self.resizeTo(document.images['imgfile'].width/2, document.images['imgfile'].height/2); 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();
*/
 }
