forked from chiho924/PyWeb-04
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinspection_page.html
More file actions
2938 lines (2927 loc) · 475 KB
/
inspection_page.html
File metadata and controls
2938 lines (2927 loc) · 475 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head id="kingcounty_gov_head"><title>
Restaurant inspection information - results
</title><meta name="keywords" content="King, County, Government, Business, Court, code, law, Election, Environment, Health, Property, Records, archives, licenses, certificates, recreation, leisure, police, deputy, safety, emergency, emergencies, social, service, transportation, bus, transit, parks, Executive" /><meta name="language" content="en-US" /><meta name="govtype" content="County" /><meta name="kcmasterpageversion" content="1.0.4.1 G" /><link href="http://www.kingcounty.gov/style/kcAgencies.css" type="text/css" rel="stylesheet" /><script src="http://www.kingcounty.gov/kcscripts/kc.js" type="text/javascript" language="javascript"></script></head><body id="kingcounty_gov_body"><form name="aspnetForm" method="post" action="Results.aspx?Output=W&Business_Name=&Business_Address=&Longitude=&Latitude=&City=&Zip_Code=98102&Inspection_Type=All&Inspection_Start=4%2f8%2f2015&Inspection_End=4%2f8%2f2016&Inspection_Closed_Business=A&Violation_Points=&Violation_Red_Points=&Violation_Descr=&Fuzzy_Search=N&Sort=B" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTEzMTkwODEyMzEPZBYCZg9kFgICAg9kFgJmD2QWAgIKD2QWAgIEDxYCHgdWaXNpYmxlaGRkeWai2lNa0qgeICl6mUe1sa8iteY=" />
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<div>
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="566B7BDD" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWAwK22bCSCwLpuKLyDAKd7LvxAgU1+IxMjAM0uczsC7f9ivcUjEhs" />
</div><a href="#maincontent" class="kcJumpLinks">skip to main content</a><div id="header"><div id="kclogo"><div id="logo"><a id="kingcounty_gov_logoLink" title="King County home" href="http://www.kingcounty.gov"><img id="kingcounty_gov_imgLogo" width="140" height="79" src="http://www.kingcounty.gov/~/media/kcBase/kclogo.ashx" alt="King County: Always at your service" style="border-width:0px;" /></a></div><br /></div><ul id="topnav"> <li class="first"><a class="kcBaseTopNavItem" href="http://www.kingcounty.gov">Home</a></li>
<li class="menuitem">
<a class="kcBaseTopNavItem" href="http://www.kingcounty.gov/News.aspx">
News</a></li>
<li class="menuitem">
<a class="kcBaseTopNavItem" href="http://directory.kingcounty.gov/ServiceSearch.asp">
Services</a></li>
<li class="menuitem">
<a class="kcBaseTopNavItem" href="http://directory.kingcounty.gov/">
Directory</a></li>
<li class="last">
<a class="kcBaseTopNavItem" href="http://info.kingcounty.gov/About/Contact/">
Contact</a></li>
<li style="padding-left:6px;"><div id="searchbox"><span id="seek"><input id="kingcounty_gov_affiliate" name="affiliate" type="hidden" value="kingcounty"></input><label for="kingcounty_gov_txtQuery" id="kingcounty_gov_lblQuery" class="hide">Search Terms:</label><input name="kingcounty_gov$txtQuery" type="text" maxlength="100" id="kingcounty_gov_txtQuery" autocomplete="on" class="usagov-search-autocomplete" /><input type="button" name="kingcounty_gov$btnSearch" value="Search" onclick="javascript:__doPostBack('kingcounty_gov$btnSearch','')" id="kingcounty_gov_btnSearch" class="submit" /></span></div></li>
</ul><div id="sitename"><a href="http://kingcounty.gov/healthservices/health.aspx">Public Health - Seattle & King County</a></div><div id="sitesubname"></div></div><div id="breadcrumbs"><div class="trail"><strong>You're in</strong>: <a href='http://kingcounty.gov/healthservices/health.aspx'>Public Health home</a> » <a class='' href='http://kingcounty.gov/healthservices/health/ehs.aspx'>Environmental health services</a> » <a class='' href='http://kingcounty.gov/healthservices/health/ehs/foodsafety.aspx'>Food protection program</a> » <a class='' href='http://kingcounty.gov/healthservices//health/ehs/foodsafety/inspections.aspx'>Food inspection reporting system</a> » Restaurant inspection information - results</div><div class="kcFunctions"><script type="text/javascript">try { kcShareLink(); } catch(err) {}</script>
<noscript></noscript>
<div id="sitemap"><a href="/health/ehs/foodsafety/inspections/Results.aspx?sitemap=1">SITEMAP</a></div></div></div><table id="container" cellspacing="0" cellpadding="0"><tr><td id="leftcol" class="column" rowspan="2"><ul id="navcontainer"><li><a href="http://www.kingcounty.gov/healthservices/health.aspx" title="Public Health – Seattle & King County homepage">Public Health home</a></li><li><a href="http://www.kingcounty.gov/depts/health/budget.aspx" title="Public Health budget">Public Health budget</a></li><li><a href="http://www.kingcounty.gov/depts/health/locations.aspx" title="Public Health Centers and other office locations">Public Health Centers and other office locations</a></li><li><a href="http://www.kingcounty.gov/depts/health/news.aspx" title="News releases">News releases</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/languages.aspx" title="Public Health materials in multiple languages">Multiple language materials</a></li><li><a href="http://www.kingcounty.gov/depts/health/vital-statistics.aspx" title="Birth and death records">Birth and death records</a></li><li><a href="http://www.kingcounty.gov/depts/health/board-of-health.aspx" title="Board of Health">Board of Health</a></li><li><a href="http://www.kingcounty.gov/depts/health/child-teen-health.aspx" title="Child and teen health">Child and teen health</a></li><li><a href="http://www.kingcounty.gov/depts/health/chronic-diseases.aspx" title="Chronic diseases">Chronic diseases</a></li><li><a href="http://www.kingcounty.gov/depts/health/codes.aspx" title="Codes and jurisdictions">Codes and jurisdictions</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/communicable.aspx" title="Communicable disease prevention">Communicable diseases and immunization</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/data.aspx" title="Data and reports">Data and reports</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs.aspx" title="Environmental Health Services">Environmental health services</a><ul class="level2"><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/fees.aspx" title="Environmental Health Services fees effective March 21, 2015">Service fees</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/portal.aspx" title="Welcome to Environmental Health's online services portal">Online services portal</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/animals.aspx" title="Animals, bugs and pests">Animals, bugs and pests</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety.aspx" title="Food Protection Program">Food Protection Program</a><ul class="level3"><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/FoodBusiness.aspx" title="Food business permits in King County">Food business permits</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/FoodWorker.aspx" title="How to get your food worker card">Food worker cards</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/factsheets.aspx" title="Food safety fact sheets">Food safety fact sheets</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/foodfaq.aspx" title="Common questions about food safety">Common questions about food safety</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections.aspx" class="on" title="The Public Health food inspection reporting system">Food inspection reporting system</a><ul class="level4"><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections/complaints.aspx" title="Report possible unsafe food handling activity">Complaints</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections/closures.aspx" title="Food establishment closures in King County">Food establishment closures</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections/foodhandling.aspx" title="Safe food handling practices">Safe food handling practices</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections/FoodTerms.aspx" title="What the food inspection terms we use mean">Food inspection terms</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections/mock1.aspx" title="Take a tour of our mock food inspection">Mock food inspection</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections/system.aspx" title="Inspection reporting system">Inspection reporting system</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/inspections/whyclose.aspx" title="When and why Public Health closes a food establishment">When establishment closures occur</a></li></ul></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/myths.aspx" title="Myths and misunderstandings about food safety">Myths about food safety</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/foodsafety/videos.aspx" title="Food safety streaming videos">Streaming food safety videos</a></li></ul></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/garbage.aspx" title="Garbage and illegal dumping">Garbage and illegal dumping</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/community.aspx" title="Healthy communities">Healthy communities</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/toxic.aspx" title="Toxins and air quality">Toxins and air quality</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/piping.aspx" title="Water, sewage and plumbing">Water, sewage and plumbing</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/healthyplaces.aspx" title="Healthy Places for Everyone">Healthy Places for Everyone</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/ehs/zoonotics.aspx" title="Zoonotic Disease Program">Zoonotic Disease Program</a></li></ul></li><li><a href="http://www.kingcounty.gov/healthservices/health/preparedness.aspx" title="Emergency preparedness">Emergency preparedness</a></li><li><a href="http://www.kingcounty.gov/depts/health/emergency-medical-services.aspx" title="Emergency Medical Services (EMS)">Emergency Medical Services (EMS)</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/injury.aspx" title="Violence and Injury Prevention">Violence and Injury Prevention</a></li><li><a href="http://www.kingcounty.gov/depts/health/marijuana.aspx" title="Health and marijuana">Health and marijuana</a></li><li><a href="http://www.kingcounty.gov/depts/health/examiner.aspx" title="Medical examiner">Medical examiner</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/nutrition.aspx" title="Nutrition and health">Nutrition</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/personal.aspx" title="Primary care and personal health services">Primary care and personal health</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/tobacco.aspx" title="Tobacco Prevention Program">Tobacco prevention</a></li><li><a href="http://www.kingcounty.gov/depts/health/partnerships.aspx" title="Business partnerships">Business partnerships</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/jobs.aspx" title="Jobs at Public Health - Seattle & King County">Jobs</a></li><li><a href="http://www.kingcounty.gov/depts/health/about-us.aspx" title="About us">About us</a></li><li><a href="http://www.kingcounty.gov/healthservices/health/sitemap.aspx" title="Public Health site map">Site map</a></li></ul></td><td id="sitecontentheader" colspan="2"><a id="maincontent"></a></td></tr><tr valign="top"><td id="contentcol" class="column">
<table style="width: 635px; border-spacing: 0px;" xmlns="http://www.w3.org/1999/xhtml"><tr style="height: 20px; vertical-align: top"><td><a href="#" onClick="javascript: goBack(); return false;">Back to search page</a></td></tr><tr><td style="font-style: italic; font-size: small;" class="promptTextBox">
Click on the "+" to see search result details
</td></tr><tr style="color: #fff"><td style="background-color: #006; font-weight:bold" class="promptTextBox">
Facilities
</td></tr></table><div id="PR0071293" name="PR0071293" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ 11TH AVENUE INN</td><td style="width: 335px; font-weight: bold" class="promptTextBox">121 11TH AVE E , SEATTLE, 98102</td></tr></table></div><div id="PR0071293~" name="PR0071293~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">11TH AVENUE INN</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Bed and Breakfast - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">121 11TH AVE E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6194541314</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3185139052</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">09/24/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">1400 - Raw meats below and away from ready to eat food; species separated (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0003061" name="PR0003061" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ 14 CARROT CAFE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2305 EASTLAKE AVE E , Seattle, 98102</td></tr></table></div><div id="PR0003061~" name="PR0003061~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">14 CARROT CAFE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2305 EASTLAKE AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 324-1442</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6398598066</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3261014499</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">03/29/2016</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4200 - Food-contact surfaces maintained, clean, sanitized (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Return Inspection</td><td class="promptTextBox">12/02/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">10/20/2015</td><td class="promptTextBox">55</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">1900 - No room temperature storage; proper use of time... (25 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">1600 - Proper cooling procedure (25 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3400 - Wiping cloths properly used, stored, proper sanitizer (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">08/25/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">06/02/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2200 - Accurate thermometer provided and used ... (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0051089" name="PR0051089" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ 14 CARROT CAFE/ ESPRESSO @ 14 CARROT CAFE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2305 EASTLAKE AVE E , Seattle, 98102</td></tr></table></div><div id="PR0051089~" name="PR0051089~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">14 CARROT CAFE/ ESPRESSO @ 14 CARROT CAFE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Mobile Food Unit - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2305 EASTLAKE AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 324-1442</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6398598066</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3261014499</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">03/29/2016</td><td class="promptTextBox">10</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0600 - Adequate handwashing facilities (10 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">08/25/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3400 - Wiping cloths properly used, stored, proper sanitizer (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0070880" name="PR0070880" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ AFC SUSHI @ QFC #887</td><td style="width: 335px; font-weight: bold" class="promptTextBox">425 BROADWAY AVE E , SEATTLE, 98102</td></tr></table></div><div id="PR0070880~" name="PR0070880~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">AFC SUSHI @ QFC #887</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">425 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6222831633</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211541549</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">10/21/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">06/22/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0081662" name="PR0081662" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ ALTURA</td><td style="width: 335px; font-weight: bold" class="promptTextBox">617 BROADWAY AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0081662~" name="PR0081662~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">ALTURA</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">617 BROADWAY AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 417-4628</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6248978878</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211601510</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">01/26/2016</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/23/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">06/10/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0026186" name="PR0026186" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ AMERICANA</td><td style="width: 335px; font-weight: bold" class="promptTextBox">219 BROADWAY AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0026186~" name="PR0026186~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">AMERICANA</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">219 BROADWAY AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(917) 545-9807</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6201426780</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211199818</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">04/08/2016</td><td class="promptTextBox">20</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0200 - Food Worker Cards current for all food workers; new food workers trained (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">1500 - Proper handling of pooled eggs (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">12/03/2015</td><td class="promptTextBox">10</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">1400 - Raw meats below and away from ready to eat food; species separated (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3300 - Potential food contamination prevented during delivery, preparation, storage, display (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">08/04/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Return Inspection</td><td class="promptTextBox">05/07/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0081339" name="PR0081339" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ ANALOG COFFEE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">235 SUMMIT AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0081339~" name="PR0081339~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">ANALOG COFFEE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">235 SUMMIT AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 661-4794</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6206713400</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3255494600</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">04/05/2016</td><td class="promptTextBox">15</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3400 - Wiping cloths properly used, stored, proper sanitizer (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0012004" name="PR0012004" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ AOKI JAPANESE GRILL & SUSHI</td><td style="width: 335px; font-weight: bold" class="promptTextBox">621 BROADWAY AVE E , Seattle, 98102</td></tr></table></div><div id="PR0012004~" name="PR0012004~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">AOKI JAPANESE GRILL & SUSHI</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">621 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 324-3633</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6244448582</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211831393</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/24/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">05/05/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">2900 - Adequate equipment for temperature control (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0072015" name="PR0072015" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BACON MANSION, LLC</td><td style="width: 335px; font-weight: bold" class="promptTextBox">959 BROADWAY E , SEATTLE, 98102</td></tr></table></div><div id="PR0072015~" name="PR0072015~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BACON MANSION, LLC</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Caterer - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">959 BROADWAY E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6284691811</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3216585013</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">09/10/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Incomplete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">05/21/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0081385" name="PR0081385" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BAIT SHOP</td><td style="width: 335px; font-weight: bold" class="promptTextBox">606-B BROADWAY AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0081385~" name="PR0081385~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BAIT SHOP</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">606-B BROADWAY AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 324-2635</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6246326349</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3206905230</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">01/14/2016</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/23/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">06/10/2015</td><td class="promptTextBox">10</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4100 - Warewashing facilities properly installed,... (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3200 - Insects, rodents, animals not present; entrance controlled. (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0082931" name="PR0082931" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BARJOT</td><td style="width: 335px; font-weight: bold" class="promptTextBox">711 BELLEVUE AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0082931~" name="PR0082931~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BARJOT</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category II</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">711 BELLEVUE AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 300-9609</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6254230000</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3269110000</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/15/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Return Inspection</td><td class="promptTextBox">06/23/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0082035" name="PR0082035" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BED & BREAKFAST ON BROADWAY</td><td style="width: 335px; font-weight: bold" class="promptTextBox">722 BROADWAY AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0082035~" name="PR0082035~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BED & BREAKFAST ON BROADWAY</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Bed and Breakfast - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">722 BROADWAY AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6257350000</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3210430000</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">09/10/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0072016" name="PR0072016" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BED & BREAKFAST ON CAPITOL HILL</td><td style="width: 335px; font-weight: bold" class="promptTextBox">739 BROADWAY E , SEATTLE, 98102</td></tr></table></div><div id="PR0072016~" name="PR0072016~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BED & BREAKFAST ON CAPITOL HILL</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Bed and Breakfast - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">739 BROADWAY E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6261544385</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3216155477</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">09/10/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0073432" name="PR0073432" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BEST TERIYAKI</td><td style="width: 335px; font-weight: bold" class="promptTextBox">110 SUMMIT AVE E , SEATTLE, 98102</td></tr></table></div><div id="PR0073432~" name="PR0073432~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BEST TERIYAKI</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">110 SUMMIT AVE E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 329-5809</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6188346260</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3251209775</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">11/24/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3300 - Potential food contamination prevented during delivery, preparation, storage, display (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">06/16/2015</td><td class="promptTextBox">25</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">1600 - Proper cooling procedure (25 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0076906" name="PR0076906" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BLEU BISTOR'S GROTTO</td><td style="width: 335px; font-weight: bold" class="promptTextBox">1801 E OLIVE WAY , SEATTLE, 98102</td></tr></table></div><div id="PR0076906~" name="PR0076906~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BLEU BISTOR'S GROTTO</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">1801 E OLIVE WAY </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 930-7527</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6197921490</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3219228967</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/03/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">07/23/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">05/07/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0017877" name="PR0017877" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BLIND PIG BISTRO</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2238 EASTLAKE AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0017877~" name="PR0017877~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BLIND PIG BISTRO</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2238 EASTLAKE AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 329-2744</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6394793019</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3255210532</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">03/01/2016</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">2900 - Adequate equipment for temperature control (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">11/17/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">08/11/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0081450" name="PR0081450" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BLUE MOON BURGERS</td><td style="width: 335px; font-weight: bold" class="promptTextBox">515 BROADWAY AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0081450~" name="PR0081450~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BLUE MOON BURGERS</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">515 BROADWAY AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 295-8534</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6236387279</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3212158900</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Return Inspection</td><td class="promptTextBox">10/21/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0200 - Food Worker Cards current for all food workers; new food workers trained (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">09/30/2015</td><td class="promptTextBox">62</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0400 - Hands washed as required (25 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0900 - Proper washing of fruits and vegetables (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0200 - Food Worker Cards current for all food workers; new food workers trained (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3200 - Insects, rodents, animals not present; entrance controlled. (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4200 - Food-contact surfaces maintained, clean, sanitized (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4800 - Physical facilities properly installed,... (2 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">08/31/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Return Inspection</td><td class="promptTextBox">06/22/2015</td><td class="promptTextBox">20</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0900 - Proper washing of fruits and vegetables (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4100 - Warewashing facilities properly installed,... (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3200 - Insects, rodents, animals not present; entrance controlled. (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0019826" name="PR0019826" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BLUE RIBBON COOKING, LLC</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2501 FAIRVIEW AVE E , Seattle, 98102</td></tr></table></div><div id="PR0019826~" name="PR0019826~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BLUE RIBBON COOKING, LLC</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Caterer - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2501 FAIRVIEW AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6421819278</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3298209741</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">10/22/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">05/21/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0019472" name="PR0019472" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BLUESTONE BISTRO</td><td style="width: 335px; font-weight: bold" class="promptTextBox">1631 E OLIVE WAY , SEATTLE, 98102</td></tr></table></div><div id="PR0019472~" name="PR0019472~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BLUESTONE BISTRO</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">1631 E OLIVE WAY </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(425) 679-1777</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6194145645</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3242754647</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Return Inspection</td><td class="promptTextBox">10/21/2015</td><td class="promptTextBox">25</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">1600 - Proper cooling procedure (25 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">04/22/2015</td><td class="promptTextBox">18</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4200 - Food-contact surfaces maintained, clean, sanitized (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3700 - In-use utensils properly stored (3 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0011103" name="PR0011103" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ BROADWAY PIZZERIA LLC</td><td style="width: 335px; font-weight: bold" class="promptTextBox">426 BROADWAY AVE E , Seattle, 98102</td></tr></table></div><div id="PR0011103~" name="PR0011103~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">BROADWAY PIZZERIA LLC</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">426 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 652-0877</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6223085756</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3206679316</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">04/07/2016</td><td class="promptTextBox">10</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">11/05/2015</td><td class="promptTextBox">10</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">07/22/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4100 - Warewashing facilities properly installed,... (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0084032" name="PR0084032" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ CAFE SOLSTICE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">925 E THOMAS ST, SEATTLE, 98102</td></tr></table></div><div id="PR0084032~" name="PR0084032~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">CAFE SOLSTICE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">925 E THOMAS ST</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 412-9809</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6209380000</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3206480000</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">11/17/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">07/15/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0084732" name="PR0084732" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ CANAL MARKET</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2919 FUHRMAN AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0084732~" name="PR0084732~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">CANAL MARKET</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2919 FUHRMAN AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 713-9825</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox"></td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">11/17/2015</td><td class="promptTextBox">20</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3400 - Wiping cloths properly used, stored, proper sanitizer (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3300 - Potential food contamination prevented during delivery, preparation, storage, display (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">07/22/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0077747" name="PR0077747" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ CAPTAIN BLACKS</td><td style="width: 335px; font-weight: bold" class="promptTextBox">129 BELMONT AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0077747~" name="PR0077747~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">CAPTAIN BLACKS</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">129 BELMONT AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6191975094</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3243738986</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">01/21/2016</td><td class="promptTextBox">8</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4200 - Food-contact surfaces maintained, clean, sanitized (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4300 - Non-food contact surfaces maintained and clean (3 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/24/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">05/12/2015</td><td class="promptTextBox">12</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4100 - Warewashing facilities properly installed,... (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4200 - Food-contact surfaces maintained, clean, sanitized (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4900 - Adequate ventilation; lighting; designated area... (2 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0081392" name="PR0081392" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ CCATTLE'S, LLC</td><td style="width: 335px; font-weight: bold" class="promptTextBox">1701 E OLIVE WAY, SEATTLE, 98102</td></tr></table></div><div id="PR0081392~" name="PR0081392~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">CCATTLE'S, LLC</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 151-250 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">1701 E OLIVE WAY</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 200-0132</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6194113900</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3231830100</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">01/21/2016</td><td class="promptTextBox">3</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3900 - Single use and single service articles properly... (3 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/08/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">06/16/2015</td><td class="promptTextBox">10</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4100 - Warewashing facilities properly installed,... (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3400 - Wiping cloths properly used, stored, proper sanitizer (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0002545" name="PR0002545" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ CHARLIE'S</td><td style="width: 335px; font-weight: bold" class="promptTextBox">217 BROADWAY AVE E , SEATTLE, 98102</td></tr></table></div><div id="PR0002545~" name="PR0002545~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">CHARLIE'S</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating > 250 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">217 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 323-2535</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6201202691</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211196218</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">04/08/2016</td><td class="promptTextBox">15</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3300 - Potential food contamination prevented during delivery, preparation, storage, display (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">12/14/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">08/04/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Incomplete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0079608" name="PR0079608" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ CICCHETTI</td><td style="width: 335px; font-weight: bold" class="promptTextBox">121 E BOSTON ST, SEATTLE, 98102</td></tr></table></div><div id="PR0079608~" name="PR0079608~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">CICCHETTI</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">121 E BOSTON ST</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 334-3560</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6380827582</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3268423577</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">03/28/2016</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3300 - Potential food contamination prevented during delivery, preparation, storage, display (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">11/30/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">08/18/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0080421" name="PR0080421" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ CORRETTO TRATTORIA & BAR</td><td style="width: 335px; font-weight: bold" class="promptTextBox">416 BROADWAY AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0080421~" name="PR0080421~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">CORRETTO TRATTORIA & BAR</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">416 BROADWAY AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 328-7812</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6222210330</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3206665439</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">02/04/2016</td><td class="promptTextBox">0</td><td class="promptTextBox">Incomplete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">10/05/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0002691" name="PR0002691" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ DELUXE TAVERN & RESTAURANT #1</td><td style="width: 335px; font-weight: bold" class="promptTextBox">625 BROADWAY AVE E , Seattle, 98102</td></tr></table></div><div id="PR0002691~" name="PR0002691~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">DELUXE TAVERN & RESTAURANT #1</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">625 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 324-9697</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6244749889</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211827011</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">02/02/2016</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">09/15/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">05/05/2015</td><td class="promptTextBox">15</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4000 - Food and non-food surfaces properly used and... (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0002704" name="PR0002704" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ DICK'S DRIVE IN</td><td style="width: 335px; font-weight: bold" class="promptTextBox">115 BROADWAY AVE E , Seattle, 98102</td></tr></table></div><div id="PR0002704~" name="PR0002704~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">DICK'S DRIVE IN</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">115 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 634-0300</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6189296972</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211007667</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">12/21/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">2800 - Food received at proper temperature (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">08/24/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">04/15/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0077654" name="PR0077654" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ DILETTANTE CHOCOLATES</td><td style="width: 335px; font-weight: bold" class="promptTextBox">538 BROADWAY AVE E , SEATTLE, 98102</td></tr></table></div><div id="PR0077654~" name="PR0077654~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">DILETTANTE CHOCOLATES</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">538 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(425) 291-1255</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6234929630</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3206867214</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0076426" name="PR0076426" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ EAST LAKE SPECIALTY DELI</td><td style="width: 335px; font-weight: bold" class="promptTextBox">1540 EASTLAKE AVE E , SEATTLE, 98102</td></tr></table></div><div id="PR0076426~" name="PR0076426~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">EAST LAKE SPECIALTY DELI</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">1540 EASTLAKE AVE E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(425) 455-8225</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6334162005</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3253762789</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">12/14/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4200 - Food-contact surfaces maintained, clean, sanitized (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">08/24/2015</td><td class="promptTextBox">8</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2120 - Proper cold holding temperatures ( 42 degrees F to 45 degrees F) (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3000 - Proper thawing methods used (3 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0032954" name="PR0032954" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ EASTLAKE BAR & GRILL</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2947 EASTLAKE AVE E , Seattle, 98102</td></tr></table></div><div id="PR0032954~" name="PR0032954~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">EASTLAKE BAR & GRILL</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2947 EASTLAKE AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 320-0785</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6486263701</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3239169930</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">09/15/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3300 - Potential food contamination prevented during delivery, preparation, storage, display (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">04/13/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0020114" name="PR0020114" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ EASTLAKE MARKET</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2244 EASTLAKE AVE E , Seattle, 98102</td></tr></table></div><div id="PR0020114~" name="PR0020114~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">EASTLAKE MARKET</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2244 EASTLAKE AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(602) 470-7618</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6395824139</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3255308887</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">03/29/2016</td><td class="promptTextBox">13</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0200 - Food Worker Cards current for all food workers; new food workers trained (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4200 - Food-contact surfaces maintained, clean, sanitized (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4300 - Non-food contact surfaces maintained and clean (3 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">11/16/2015</td><td class="promptTextBox">10</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2500 - Toxic substances properly identified,... (10 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">07/15/2015</td><td class="promptTextBox">15</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2000 - Proper reheating procedures for hot holding (15 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0002734" name="PR0002734" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ EASTLAKE ZOO TAVERN</td><td style="width: 335px; font-weight: bold" class="promptTextBox">2301 EASTLAKE AVE E , Seattle, 98102</td></tr></table></div><div id="PR0002734~" name="PR0002734~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">EASTLAKE ZOO TAVERN</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">2301 EASTLAKE AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 329-3277</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6399004815</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3261318228</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">03/01/2016</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0082149" name="PR0082149" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ EAT LOCAL, LLC</td><td style="width: 335px; font-weight: bold" class="promptTextBox">503 BROADWAY AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0082149~" name="PR0082149~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">EAT LOCAL, LLC</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Grocery Store-no seating - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">503 BROADWAY AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 432-9849</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6233080000</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3211960000</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">01/28/2016</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0082707" name="PR0082707" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ EINSTEIN BRO'S BAGELS, #3588</td><td style="width: 335px; font-weight: bold" class="promptTextBox">224 BROADWAY AVE E #C123, SEATTLE, 98102</td></tr></table></div><div id="PR0082707~" name="PR0082707~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">EINSTEIN BRO'S BAGELS, #3588</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">224 BROADWAY AVE E #C123</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(303) 568-8000</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6207370000</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3204600000</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">11/17/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">07/22/2015</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">4400 - Plumbing properly sized, installed,... (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0028114" name="PR0028114" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ EMERALD CITY SMOOTHIE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">428 BROADWAY AVE E , Seattle, 98102</td></tr></table></div><div id="PR0028114~" name="PR0028114~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">EMERALD CITY SMOOTHIE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category II</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">428 BROADWAY AVE E </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 726-9608</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6223304612</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3206682786</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">01/28/2016</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">07/22/2015</td><td class="promptTextBox">20</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0600 - Adequate handwashing facilities (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">2800 - Food received at proper temperature (5 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3200 - Insects, rodents, animals not present; entrance controlled. (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0003361" name="PR0003361" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ GLO'S</td><td style="width: 335px; font-weight: bold" class="promptTextBox">1621 E OLIVE WAY , Seattle, 98102</td></tr></table></div><div id="PR0003361~" name="PR0003361~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">GLO'S</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">1621 E OLIVE WAY </td></tr><tr><td></td><td class="promptTextBox">Seattle, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 324-2577</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6192909817</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3245361734</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">09/21/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">05/21/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0068903" name="PR0068903" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ GOLD'S GYM BROADWAY</td><td style="width: 335px; font-weight: bold" class="promptTextBox">401 BROADWAY E , SEATTLE, 98102</td></tr></table></div><div id="PR0068903~" name="PR0068903~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">GOLD'S GYM BROADWAY</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 0-12 - Risk Category I</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">401 BROADWAY E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(206) 522-3022</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6225735118</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3215917359</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">03/30/2016</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0071064" name="PR0071064" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ GRAND CENTRAL BAKERY & CAFE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">1616 EASTLAKE AVE E , SEATTLE, 98102</td></tr></table></div><div id="PR0071064~" name="PR0071064~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">GRAND CENTRAL BAKERY & CAFE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 51-150 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">1616 EASTLAKE AVE E </td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6346361776</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3247364861</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">02/02/2016</td><td class="promptTextBox">5</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #0000ff;">3400 - Wiping cloths properly used, stored, proper sanitizer (5 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Consultation/Education - Field</td><td class="promptTextBox">08/25/2015</td><td class="promptTextBox">N/A</td><td class="promptTextBox">Complete</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">04/22/2015</td><td class="promptTextBox">20</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0600 - Adequate handwashing facilities (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">04/22/2015</td><td class="promptTextBox">20</td><td class="promptTextBox">Unsatisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">2110 - Proper cold holding temperatures (greater than 45 degrees F) (10 points)
</td></tr><tr style="height: 15px;"><td style="width: 5%"></td><td class="promptTextBox" style="color: #ff0000;">0600 - Adequate handwashing facilities (10 points)
</td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0042972" name="PR0042972" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ GREAT NORTHWEST SOUP CO, THE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">1201-B EASTLAKE AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0042972~" name="PR0042972~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">GREAT NORTHWEST SOUP CO, THE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Seating 13-50 - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">1201-B EASTLAKE AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(360) 437-9187</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox">47.6307400323</td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox">-122.3277946503</td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score
</td><td style="width: 35%;background-color: #006;" class="promptTextBox">
Result
</td></tr><tr style="height: 20px; color: #006; font-weight: bold;"><td class="promptTextBox">Routine Inspection/Field Review</td><td class="promptTextBox">08/04/2015</td><td class="promptTextBox">0</td><td class="promptTextBox">Satisfactory</td></tr><tr><td colspan="4"><table style="width: 100%; border-spacing: 0;"><tr style="height: 15px;"><td style="width: 5%"></td></tr></table></td></tr><tr style="height: 15px;"><td colspan="4"></td></tr></table></td></tr><tr style="height: 1px; background-color: black"><td colspan="2"></td></tr></table></div><div id="PR0084688" name="PR0084688" onclick="toggleShow(this.id);" style="display: block" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to show business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 300px; font-weight: bold" class="promptTextBox">
+ GREAT NORTHWEST SOUP CO, THE</td><td style="width: 335px; font-weight: bold" class="promptTextBox">3218 EASTLAKE AVE E, SEATTLE, 98102</td></tr></table></div><div id="PR0084688~" name="PR0084688~" onclick="toggleShow(this.id);" style="display: none" onmouseover="this.style.cursor = 'pointer';window.status = 'Click to hide business and inspection details';" onmouseout="this.style.cursor = 'auto';window.status = '';" xmlns=""><table style="width: 635px;"><tr><td style="width: 125px; font-weight: bold" class="promptTextBox">
- Business Name
</td><td style="width: 520px; font-weight: bold" class="promptTextBox">GREAT NORTHWEST SOUP CO, THE</td></tr><tr><td class="promptElementText">
Business Category:
</td><td class="promptTextBox">Caterer - Risk Category III</td></tr><tr><td class="promptElementText">
Address:
</td><td class="promptTextBox">3218 EASTLAKE AVE E</td></tr><tr><td></td><td class="promptTextBox">SEATTLE, WA 98102</td></tr><tr><td class="promptElementText">
Phone:
</td><td class="promptTextBox">(360) 302-0108</td></tr><tr><td class="promptElementText">
Latitude:
</td><td class="promptTextBox"></td></tr><tr><td class="promptElementText">
Longitude:
</td><td class="promptTextBox"></td></tr><tr style="height: 10px"><td colspan="2"></td></tr><tr><td colspan="2"><table style="width: 100%; border-collapse:collapse"><tr style="color: #fff; height: 20px; font-weight:bold;"><td style="width: 39%; background-color: #006;" class="promptTextBox">
Inspection type
</td><td style="width: 14%; background-color: #006;" class="promptTextBox">
Date
</td><td style="width: 12%;background-color: #006;" class="promptTextBox">
Score