function viewPhoto(id, title) {
win=window.open('', 'big'+id, 'width=100,height=100');
win.document.open();
win.document.write('<html><head><title>'+title+'</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head><body style="margin:20px 20px;" onLoad="self.resizeTo(document.images.photo.width+50,document.images.photo.height+82); self.moveTo((screen.width-document.images.photo.width)/2, (screen.height-document.images.photo.height)/2-30); focus();" scroll=no>');
win.document.write('<img name="photo" src="http://www.zeidan-nl.com/images/'+id+'_big.jpg">');
win.document.write('</body></html>');
win.document.close();
}