function viewPhoto(id, picname, width, height, title) {
	w=width+50; h=height+90;
	wleft=(screen.width-width)/2;
	wtop=((screen.height-height)/2-30);
	win=window.open('', 'big'+id,'width='+w+',height='+h+',left='+wleft+',top='+wtop+',scrollbars=auto,status=no,resizable=yes');
	win.document.open();
	win.document.write('<html><head><title>'+title+'</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head><body leftmargin=20 topmargin=20 rightmargin=20 bottommargin=20 marginwidth=20 marginheight=20  >');
	win.document.write('<img name="photo" src="'+picname+'" alt="'+ title +'">');
	win.document.write('</body></html>');
	win.document.close();
}
