File size: 25,746 Bytes
6074bb8 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 |
1
00:00:00,000 --> 00:00:04,520
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุฃุจูุงุก ุงูุทูุจุฉ ูุงูุทุงูุจุงุช ุฃููุง
2
00:00:04,520 --> 00:00:09,800
ูุณููุง ุจูู
ุฌู
ูุนุง ุชุญุฏุซูุง ูู ุงูู
ุญุงุถุฑุฉ ุงูุณุงุจูุฉ ุนู
3
00:00:09,800 --> 00:00:12,180
ู
ูุถูุน ุงู school health ุงููู ูู ุงูุตุญุฉ ุงูู
ุฏุฑุณูุฉ
4
00:00:12,180 --> 00:00:15,220
ูุงุชููู
ูุง ูููุง ุนูู ุงู basic component of the school
5
00:00:15,220 --> 00:00:17,820
health program ุงุชููู
ูุง ูููุง ุนูู school health
6
00:00:17,820 --> 00:00:21,980
services ุงู health education and health school day
7
00:00:21,980 --> 00:00:25,880
ุงูููู
ููุชููู
ุงู ุดุงุก ุงููู ุนู ุงูู
ุญุงุถุฑุฉ ุงูุชุงููุฉ ุงููู
8
00:00:25,880 --> 00:00:28,080
ุงุณู
ูุง occupational health
9
00:00:30,540 --> 00:00:34,400
ูู ุฃุฌูููุง ููู definition of occupational health
10
00:00:34,400 --> 00:00:38,180
ุงูู definition ููู occupational health ูู ุนุจุงุฑุฉ ุนู
11
00:00:38,180 --> 00:00:41,360
field specialized in the healthcare of people at
12
00:00:41,360 --> 00:00:45,960
work in order to promote physical, mental and
13
00:00:45,960 --> 00:00:51,400
social wellbeing of workers in all occupation ูู
14
00:00:51,400 --> 00:00:55,460
ุงู work ู
ูู
ุฃู ู
ุด ู
ูู
ุ ูุนู
ุงู work ู
ูู
ูุฃู ุทูู ู
ุง
15
00:00:55,460 --> 00:01:01,830
ููู work ููู increase incomeูู making basic need
16
00:01:01,830 --> 00:01:06,090
ูู increase quality of life ู ูู ู
ุง ุฒุงุฏุช ุงู
17
00:01:06,090 --> 00:01:08,990
quality of life ุงููู ูู physical, mental, social,
18
00:01:09,250 --> 00:01:12,990
psychological, sexual, environmental ูู ู
ุง ุฌูุช ุตุงุฑ
19
00:01:12,990 --> 00:01:16,290
ุนูุฏูุง decrease incidence and prevalence of disease
20
00:01:16,290 --> 00:01:21,050
ูุงู working ู
ูู
ุงู occupation ู ุงู health ู
ูุถูุน
21
00:01:21,050 --> 00:01:27,230
ู
ูู
ูู
22
00:01:27,230 --> 00:01:32,090
ุฃุฌููุง ุงูุขู ุจุนุถ ุงูุฅุญุตุงุฆูุงุชูู ุงูู Statistics ูู
ูู
23
00:01:32,090 --> 00:01:35,290
ูุฏุฑุณ ุงูู occupational health ุงูุตุญุฉ ุงูู
ูููุฉ ุชุนุงูู
24
00:01:35,290 --> 00:01:40,530
ูุดูู ู
ูู
ุฉ ุฃู ู
ุด ู
ูู
ุฉ ูุญู ูุฏููุง 250 ู
ูููู ุฃุดุฎุงุต ูุญู
25
00:01:40,530 --> 00:01:44,190
ูุฏููุง 250 ู
ูููู ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต
26
00:01:44,190 --> 00:01:44,470
ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต
27
00:01:44,470 --> 00:01:45,890
ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต
28
00:01:45,890 --> 00:01:47,990
ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต
29
00:01:47,990 --> 00:01:50,290
ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต
30
00:01:50,290 --> 00:01:52,410
ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต ูุฏููุง ุฃุดุฎุงุต
31
00:01:52,410 --> 00:01:58,110
ูุฏููุง ุฃุด
32
00:01:58,460 --> 00:02:03,520
ุงูุฐู ูุณุจุจ ููู ุญุงุฌุฉ ู
ุฑุชุจุทุฉ ุจุงูุนู
ู ูู ุฃูุชุฑ ู
ู ู
ูุช
33
00:02:03,520 --> 00:02:10,130
ุจุณุจุจ ุญุงุฌุฉ ู
ุญุทู
ุฉwars ุงูุญุฑูุจ and violence ู
ุนูุงุชู ุฃู
34
00:02:10,130 --> 00:02:14,510
ุงูู occupational health ู
ูู
ุฌุฏุง ู
ุง ุฒุงู 250 ู
ูููู
35
00:02:14,510 --> 00:02:17,690
people have work related accident each year 160
36
00:02:17,690 --> 00:02:21,690
ู
ูููู cases have occupational disease each year
37
00:02:21,690 --> 00:02:27,430
ูุฅุฐุง ูุงู ุงูููุงุก due to work related accident ุฃูุชุฑ
38
00:02:27,430 --> 00:02:33,160
ู
ู ุงููููุงุช ู
ุฌุชู
ุนุฉู
ู ุงูู Traffic accidents ู ุงูู
39
00:02:33,160 --> 00:02:37,040
War ุญูุงุฑุงุช ุงูุณูุงุฑุงุช ู ุงูุญุฑูุจ ู ุงูู Violence ู
ุฒุงู
40
00:02:37,040 --> 00:02:42,120
ููู ุฃู ู
ูุถูุน ุงูู Recupation ู
ูุถูุน ู
ูู
ูู ุนููุง ุงูู
41
00:02:42,120 --> 00:02:45,420
classification of occupational diseases ูู ุนููุง
42
00:02:45,420 --> 00:02:48,920
ุงูู mechanical diseases mechanical diseases caused
43
00:02:48,920 --> 00:02:53,140
by mechanical factors physical diseases caused by
44
00:02:53,140 --> 00:02:56,180
physical factors biological diseases caused by
45
00:02:56,180 --> 00:02:58,900
biological factors chemical diseases caused by
46
00:02:58,900 --> 00:03:02,380
chemical factors psychosocial diseases caused by
47
00:03:03,700 --> 00:03:08,160
psychosocial factors ูุฌู ูุฃููู ููู ูุนูู ุงููู ูู
48
00:03:08,160 --> 00:03:12,700
physical disease ูุงู caused by physical factors
49
00:03:12,700 --> 00:03:16,840
ูุฌู ูุฃูู ููุน ู
ู ุงูุฃููุงุน ุงููู ูู physical factors
50
00:03:16,840 --> 00:03:21,920
can lead to physical disease ุจุงููุณุจุฉ
51
00:03:21,920 --> 00:03:24,160
ูู physical factors going to lead to physical
52
00:03:24,160 --> 00:03:27,240
disease how physical factors can lead to physical
53
00:03:27,240 --> 00:03:31,840
disease ุฒู ู
ุง ูููู exposureto sunlight ูุนูู ุฒู ุงู
54
00:03:31,840 --> 00:03:35,540
exposure to sunlight can lead to sun stroke ุฏุฑุจุฉ
55
00:03:35,540 --> 00:03:39,320
ุงูุดู
ุณ exposure to sunlight could lead to first
56
00:03:39,320 --> 00:03:42,100
degree burn ุฒู ุงููู ุจูู
ุดู ุนูู ุงูุจุญุฑ ูู ูุตู ุงูุดุชุงุก
57
00:03:42,100 --> 00:03:47,520
ูู ูุตู ุงูุตูู ู
ู
ูู ูุนู
ู first degree burn ุฒู
58
00:03:47,520 --> 00:03:50,640
exposure to sunlight could be a risk factor for
59
00:03:50,640 --> 00:03:54,340
cancer coil exposure to noise can lead to hearing
60
00:03:54,340 --> 00:03:58,350
loss ู
ุด ูู ูุงู working in high attitudeุฃู ูู
61
00:03:58,350 --> 00:04:03,370
ุงูุงููุงุฑ ุงูุดุบู ูู ู
ูุงุทู ู
ุฑุชูุนุฉ ุฌุฏุง ุฃู ูู ุงูุงููุงุฑ ูู
62
00:04:03,370 --> 00:04:07,670
ุงูุงููุงุฑ can affect ear ู
ู
ูู ูุคุซุฑ ุนูู ุงูุณู
ุงุนู and
63
00:04:07,670 --> 00:04:10,750
cause tissue damage ูุนูู working in a high
64
00:04:10,750 --> 00:04:14,750
attitude or a tunnel can affect ear and cause
65
00:04:14,750 --> 00:04:20,090
tissue damage ููุฐุง how physical factors can lead
66
00:04:20,090 --> 00:04:25,750
to physical diseases ุทุจุนุง ูุฐุง ุฒู ู
ุง ุงุญูุง ุดุงููู
67
00:04:25,750 --> 00:04:29,540
ุงูุญูู ููุง exposure to sunlightูู working in ุฃุชุงูู
68
00:04:29,540 --> 00:04:33,220
ุงููู ุฒู ุงูุฃููุงู or working in high altitude ู
ูุงุทู
69
00:04:33,220 --> 00:04:37,560
ู
ุฑุชูุนุฉ ูุฐุง ุจูุนู
ู can affect ear ุจุฃุซุฑ ุนูู ุงูุฃุฐู
70
00:04:37,560 --> 00:04:40,260
ุทุจุนุง and cause tissue damage
71
00:04:43,000 --> 00:04:46,420
ุงูุชุงููุฉ ุจููููุฌููุงู ูุงูุชูุฑุฒ ูุงูู Lead to Biological
72
00:04:46,420 --> 00:04:50,500
Diseases ููุฐุง ุฃูุชุฑ common ู
ู
ูู ุชุตูุฑ ุจูู ุงูู Health
73
00:04:50,500 --> 00:04:54,000
Care Provider ุฒู ุงูู Nursesุ ุฒู ุงูููุฒูุดูุ ุฒู ุงูู
74
00:04:54,000 --> 00:04:59,120
Medical Technologyุ ุฅูู ุขุฎุฑูุง ูุคูุงุก ุงูู Biological
75
00:04:59,120 --> 00:05:02,970
Factorscan lead to biological diseases ุฒู exposure
76
00:05:02,970 --> 00:05:06,270
to bacteria ุฒู ุงูู Mycobacterium tuberculosis can
77
00:05:06,270 --> 00:05:10,210
cause TB ู
ุซูุง ุฒู ุงู exposure to viral can lead to
78
00:05:10,210 --> 00:05:13,850
Hepatitis A, Hepatitis B, Hepatitis C, Hepatitis
79
00:05:13,850 --> 00:05:17,450
D, Hepatitis E exposure to fungi for example can
80
00:05:17,450 --> 00:05:20,130
lead to upper respiratory tract infection ุฃู lower
81
00:05:20,130 --> 00:05:23,190
respiratory tract infectionExposure to parasites
82
00:05:23,190 --> 00:05:27,710
ู
ู
ูู ูุงู ูุคุฏู ููู G.I. Disturbance ููุฐุง ููู ุจูุตูุฑ
83
00:05:27,710 --> 00:05:32,230
ู
ุน ุฃู among health care providers ููุนููุง ุฃู ุงู
84
00:05:32,230 --> 00:05:36,030
biological factors ูุงู ููุฏ to biological diseases
85
00:05:36,030 --> 00:05:39,830
ููุฐุง ููู ุงุณู
ุงูู Occupational Health Hazard
86
00:05:45,450 --> 00:05:54,370
ุงูููู
ููุงู ูุงูุชูุฑุฒ ูุนู
ููู
87
00:05:54,370 --> 00:05:58,500
ูู ู
ุฌุงูุงุช ุจูุงุณุชูููู
ูู ุฃู ูุณุจุจ ูููุง ุฅุฏุงุฑุฉ
88
00:05:58,500 --> 00:06:02,840
ุงููุฑุจููููุณูุฏ ุฃู ุฅุฏุงุฑุฉ ุงููุฑุจููููุณูุฏ ููุณุจุจ ูููุง
89
00:06:02,840 --> 00:06:06,760
ุฅุฏุงุฑุฉ ุงููุฑุจููููุณูุฏ ูุฐู ุงููุงูุนุงุช ุงูููู
ูุงุฆูุฉ ุชุชุณุจุจ
90
00:06:06,760 --> 00:06:10,700
ูู ู
ุฑุถ ููู
ูุงุฆู ูุนู
ููุง ูู ู
ุตูุนุงุช ุจูุงุณุชูููุฉ ูู
ูู ุฃู
91
00:06:10,700 --> 00:06:13,860
ูุณุจุจ ูููุง ุฅุฏุงุฑุฉ ุงููุฑุจููููุณูุฏ ููุณุจุจ ูููุง ุฅุฏุงุฑุฉ
92
00:06:13,860 --> 00:06:19,700
ุงููุฑุจููููุณูุฏ ูุนู
ููุง ูู ู
ุตูุนุงุช ู
ุตูุนุงุช ููู
ูุงุฆูุฉ ูู
ูู
93
00:06:19,700 --> 00:06:24,780
ุฃู ูุณุจุจ ูููุง ุฅุฏุงุฑุฉ ุงููุฑุจููููุณูุฏุฒู poor handling of
94
00:06:24,780 --> 00:06:28,340
chemical substance ุฃูู ุฃู chemical substance ู
ุง
95
00:06:28,340 --> 00:06:31,620
ุฃูุช ู
ุด ูุงุจุณ gloves ู ุชู
ุถุงุฑุน ุฃูุฏูู ู
ู
ูู ูุนู
ู ุทุจุนุง
96
00:06:31,620 --> 00:06:36,120
damage of the skin ูุจุนุถ ุงู chemical factors can
97
00:06:36,120 --> 00:06:41,930
lead to chemical diseasesุงูู Ergonomic Factors Can
98
00:06:41,930 --> 00:06:44,710
Lead To Ergonomic Diseases ุฒู ู
ุง ุญุดุง ูููุง ุจุงูุตูุฑุฉ
99
00:06:44,710 --> 00:06:47,670
ุงูู
ูุตูุฏ ูู ุงูู Ergonomic ุฃู ุงูู Mechanical Factors
100
00:06:47,670 --> 00:06:50,390
Can Lead To Mechanical Diseases ุฃู Ergonomic
101
00:06:50,390 --> 00:06:53,650
Factors Can Lead To Ergonomic Diseases ุฒู ุงูู
102
00:06:53,650 --> 00:06:56,750
Sitting For Long Period Of Time ุฒู ูุฐุง ุงูู Sitting
103
00:06:56,750 --> 00:07:00,130
For Long Period Of Time ุฃู Standing For Long
104
00:07:00,130 --> 00:07:06,670
Period Of Time Heavy Lifting ุชุญู
ู ุฃุดูุงุก ุซูููุฉ Poor
105
00:07:06,670 --> 00:07:10,330
Handling Of Equipmentุฃู ุงูู Improper Handling of
106
00:07:10,330 --> 00:07:14,370
Components ูู ูุฐุง ูุนู
ู ูู Back pain ููุฐุง ููู ุงูู
107
00:07:14,370 --> 00:07:17,990
Ergonomic Factors ุฃู ุงูู Mechanical Factors Can
108
00:07:17,990 --> 00:07:22,050
lead to Mechanical Diseases ูุฌูุฉ ููู Psychosocial
109
00:07:22,050 --> 00:07:26,350
Factors Can lead to Psychosocial Diseases ูู ุฌููุง
110
00:07:26,350 --> 00:07:28,850
ููู Psychosocial Factors ุฌุณู
ูู Psychological
111
00:07:28,850 --> 00:07:32,310
Factors ู Social Factors ููู ุงูู Psychological
112
00:07:32,310 --> 00:07:36,530
Factors Can lead to Psychological Diseaseุงูู
113
00:07:36,530 --> 00:07:39,730
Psychological factors ุฒู ู
ุซููุงุ ููุฐุง ุฃูุชุฑ ุจูุตูุฑ
114
00:07:39,730 --> 00:07:42,290
ุจูู ุงูู Health Care Provider ุฒู ุงูู Nursesุ ุงูู
115
00:07:42,290 --> 00:07:46,990
Physiciansุ ุงูู Medical Technologyุ ุงูุงุฎุฑ ู
ู ุงูู
116
00:07:46,990 --> 00:07:49,570
Health Care Provider ุงููุงุณ ุงููู ุจูุดุชุบููุง ูู
117
00:07:49,570 --> 00:07:52,770
ุงูู
ุณุชุดููุงุชุ ููุดุ ู
ู ุงูู Psychological factors ูุนูู
118
00:07:52,770 --> 00:07:57,260
working ุฒู working night shiftุ working on callุนู
ู
119
00:07:57,260 --> 00:07:59,320
ุทุฑู ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ
120
00:07:59,320 --> 00:07:59,600
ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช
121
00:07:59,600 --> 00:08:00,200
ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู
122
00:08:00,200 --> 00:08:02,660
ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ
123
00:08:02,660 --> 00:08:03,480
ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช
124
00:08:03,480 --> 00:08:03,860
ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู
125
00:08:03,860 --> 00:08:04,780
ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ
126
00:08:04,780 --> 00:08:07,680
ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช
127
00:08:07,680 --> 00:08:10,960
ุทูููุฉ ู
ู ููุช ุทูููุฉ ู
ู ููุช ุทูsocial ู
ุซูุง argument
128
00:08:10,960 --> 00:08:15,220
with wife ุฌุฏู ู
ุน ุงูwife divorce ู
ุซูุง ุงูู child
129
00:08:15,220 --> 00:08:19,000
sickness ูุฐุง ุจูุฒูุฏ ุงู stress ุจุฒูุงุฏุฉ ููุฐุง ุงู stress
130
00:08:19,000 --> 00:08:22,160
ุทุจุนุง ุฒู ู
ุง ุงูุชูุง ุนุงุฑููู ุจูุนู
ู release ู adrenaline
131
00:08:22,160 --> 00:08:25,520
ู non-adrenaline ููุฐุง ู
ู
ูู ูุนู
ู vasoconstriction
132
00:08:25,520 --> 00:08:28,680
ู
ู
ูู ูุนู
ู .. ู
ู
ูู ูุนุฏู ุงู stress ุงู main risk
133
00:08:28,680 --> 00:08:31,860
factor for hypertensionุ diabetesุ heart disease
134
00:08:31,860 --> 00:08:34,620
ููุนูุง ุงู psychosocial factors can lead to
135
00:08:34,620 --> 00:08:36,340
psychosocial diseases
136
00:08:38,790 --> 00:08:43,910
ููุง ุทุจุนุงู ุฌูุจูุง ุจุนุถ ุงูุฏุฑุงุณุงุช ุงููู ู
ุนุธู
ูุง ุฃูุง ุนู
ููุง
137
00:08:43,910 --> 00:08:48,270
ูุฒู
ูุงุฆู ุงููู ุนูุงูุฉ ุจุงูู Occupational Health Hazard
138
00:08:48,270 --> 00:08:52,670
ุทุจุนุงู ูู ุฏุฑุงุณุฉ ุนู
ููุงูุง ุนูู ุงูู Determinants of Low
139
00:08:52,670 --> 00:08:55,550
Back Pain Determinants of Low Back Pain Among
140
00:08:55,550 --> 00:08:58,570
Operating Room Nurses ุฅูุฌุงุฒ Governmental ูู
141
00:08:58,570 --> 00:09:04,030
Hospitals ูุฐู ุงูุฏุฑุงุณุฉ ู
ุนู
ููุฉ ู
ุน ุฒู
ูู ุฅูู ุงุณู
ู
142
00:09:04,030 --> 00:09:10,230
ุงูุฏูุชูุฑ ุณุงู
ุฑุงูููุงุฌูุฉ ุชู
ุงู
ูุฒู ู
ุง ุชุดุงูููู ูุงุฏ ุงู
143
00:09:10,230 --> 00:09:12,630
distribution of the population according to place
144
00:09:12,630 --> 00:09:16,650
of work ุฃุฎุฏูุง ุญูุงูู 159 ู
ู
ุฑุถ ุจูุดุชุบููุง ุบุฑู ุงูุนู
ููุงุช
145
00:09:16,650 --> 00:09:19,850
ุฒู ู
ุง ูุดุงูููู ู
ู ุงูุดูุงุก ูุงุตุฑ ููุฑูุจูุง ุงูุฃูุตู ูู
ุงู
146
00:09:19,850 --> 00:09:23,310
ุนุฏูุงู ุฃุจู ููุณู ุงููุฌุงุฑ ุจูุช ุญููู ุฅูู ุฃุฎุฑู ู
ู
147
00:09:23,310 --> 00:09:27,170
ุงูู
ุณุชุดููุงุช ูุงู 159 ู
ู
ุฑุถ ุจูุดุชุบู ูู ุงูุนู
ููุฉ ุทุจุนุง
148
00:09:27,170 --> 00:09:31,440
ูููู
inclusion criteria ู exclusion criteriaุฃุฎุฏูุง
149
00:09:31,440 --> 00:09:34,260
ุงููู ูู
ุงูู height ู ุงู weight ู ุงู body mass
150
00:09:34,260 --> 00:09:39,980
index ุทูุนุช ุงู prevalence of low back ุจูู ุญูุงูู 70%
151
00:09:39,980 --> 00:09:44,300
ูุนูู ูุณุจุฉ ุนุงููุฉ 70% of low back among operating
152
00:09:44,300 --> 00:09:46,860
room nurses who are working in governmental
153
00:09:46,860 --> 00:09:51,930
hospitals ููู
ูุง ุฃุฌููุง ุณุฃููุงูู
ุงูู 70% ูู ุงูู pain
154
00:09:51,930 --> 00:09:55,610
radiatedุ ูู ุจูุชุดุฑ ู
ู ู
ูุงู ูู
ูุงูุ ุงููู ูุงููุง ุงู
155
00:09:55,610 --> 00:09:59,410
pain not radiated ูุนูู ุตุญ ุนูุฏู low back pain ุจุทูู
156
00:09:59,410 --> 00:10:03,190
not radiated ูุงู 16.5% ูุงู radiated ูู both legs
157
00:10:03,190 --> 00:10:09,090
20%ูุงู ุงู right leg ุชูุฑูุจุง 8% ู ุงู left leg 14%
158
00:10:09,090 --> 00:10:13,450
ุงููู ุฌุงูู ุทุจุนุง ูู ุจูู 30% ููู ุฏูู ุงู 70% ุงููู ุฌุงูู
159
00:10:13,450 --> 00:10:16,270
ุจูู ู ูู
ุง ุณุฃููุงูู
ูู ุงู back radiated ุฃู not
160
00:10:16,270 --> 00:10:20,290
radiated ุฌุงูุจููู
ูู
ุง ุณุฃููุงูู
ุนู risk factors of
161
00:10:20,290 --> 00:10:23,690
low back pain among operating room nurses ุทุจุนุง ูุฐู
162
00:10:23,690 --> 00:10:26,330
ู
ู ูุงุญูุฉ ุงู nurses perspective ู
ู ูุฌูุฉ ูุธุฑ
163
00:10:26,330 --> 00:10:29,850
ุงูู
ู
ุฑุถูู ูู
ุง ูููุง ููู
ุฅูุด ุฃุฎุชูุน ุนูุงู
ู ุจุชุฃุฏู ูู low
164
00:10:29,850 --> 00:10:34,630
back pain ุทุจุนุง ุฃุนูู ูุงุญุฏ ุฃุฎุฏ 67% ุฒู ู
ุง ุญุดูููุงููู
165
00:10:34,630 --> 00:10:38,650
ูู prolong time standing ูุงูู work overload ุทุจุนุง
166
00:10:38,650 --> 00:10:43,970
ููู ุจุนุฏูุง 65% lifting and transferring patient 62%
167
00:10:43,970 --> 00:10:48,550
ุงููู wearing high heel shoes during work ู23% ุงููู
168
00:10:48,550 --> 00:10:53,150
sustained trauma during work ุฃู 16% ุงููู sustained
169
00:10:53,150 --> 00:10:56,770
trauma during work ููุนูุง ูุฐู ู
ุนุธู
ุงู risk factors
170
00:10:56,770 --> 00:10:59,930
which lead to low back pain among operating room
171
00:10:59,930 --> 00:11:04,550
nurses ุญุชู ูู
ุง ุฌููุง ุณุฃููุงูู
ู
ู ูุฌูุฉ ูุธุฑูู
ุงูู
172
00:11:04,550 --> 00:11:07,650
nurses ุงููู ุจูุดุชุบููุง ูู ุงูุนู
ููุงุช ุน ุงู work
173
00:11:07,650 --> 00:11:11,030
environment ุน ุงูุจูุฆุฉ ุงููู ุจูุดุชุบููุง ูููุง ูู 38.5%
174
00:11:11,030 --> 00:11:13,850
ูุงููุง there is no enough lighting in workplace
175
00:11:13,850 --> 00:11:17,730
ูุนูู ู
ุงููุด enough lighting ููู ูุฑุง ูู ุงูุนู
ููุงุช 60%
176
00:11:17,730 --> 00:11:20,910
ุฒู ู
ุง ุงุญูุง ุดุงูููู ุฌุงูุจูุง there is no ventilation
177
00:11:20,910 --> 00:11:26,130
in workplace72% ุฃุฌุงุจูุง ุฃูู ูุง ููุฌุฏ ู
ุตุนุฏ ู
ูุงุณุจ
178
00:11:26,130 --> 00:11:32,070
ููุฅููุงู ู60% ูุงููุง ุฅููู
ูู
ููููุง ูุฏููู
ุญุฑูุชูู
179
00:11:32,070 --> 00:11:36,250
ูุชุญุฑู ุงูููุจูููุจู
ุงู 74% ูุงููุง ุฃูู ูุง ููุฌุฏ ู
ุตุนุฏ
180
00:11:36,250 --> 00:11:41,230
ู
ูุงุณุจ ููุฅููุงู ู23% ูุงููุง ุฃูู ูุง ููุฌุฏ ู
ุตุนุฏ ู
ูุงุณุจ
181
00:11:41,230 --> 00:11:44,950
ููููุจูููุจู
ุงู ูุฐู ุฏุฑุงุณุฉ ุงูุนู
ูุช ู
ุนู ูู
ุน ุฒู
ููู
182
00:11:44,950 --> 00:11:50,470
ุงูุฏูุชูุฑ ุณุงู
ุฑ ุฅูู ุนูุงูุฉ ุจุงููEquipational Healthูู
183
00:11:50,470 --> 00:11:56,750
ุฏุฑุงุณุฉ ุชุงููุฉ ุนู
ูุชูุง ุฃูุง ูุฒู
ููุชู ุฅู
ุงู
ูุทุฉ ุณูุฉ 2011
184
00:11:56,750 --> 00:12:01,290
ูุงูุช ุทุจุนุงู ุจุนููุงู ุงูู Evaluation of the
185
00:12:01,290 --> 00:12:04,290
Occupational Health Hazard among Nurses Working in
186
00:12:04,290 --> 00:12:07,310
Governmental Primary Health Care Centers in Gaza
187
00:12:07,310 --> 00:12:11,590
Governorate ุทุจุนุงู ูุฐู ุงูู Age Distribution ุนู
ุงุฑูู
188
00:12:11,590 --> 00:12:16,990
ูุงูุชูุนูู ุงูุฃูู ู
ู 30 ุณูุฉ 25% ู
ู 31 ู 45 ูุงููุง 45%
189
00:12:16,990 --> 00:12:20,930
ุชูุฑูุจุง ูุงูู more than 45 years ูุงููุง ุชูุฑูุจุง ุงููู
190
00:12:20,930 --> 00:12:28,910
ูู 28% ูุฐุง ุงู gender ูุงู 67% ู
ููู
female ู 33%
191
00:12:28,910 --> 00:12:33,570
maleุทุจุนุง ุฃูุง ุจูู
ูู ุงููู ูู ุงูุฌุฏูู ูุฐุง ุงููู ุณุฃููุงูู
192
00:12:33,570 --> 00:12:36,670
ุนูู ุงููู ูู knowledge of nurses toward type of
193
00:12:36,670 --> 00:12:39,730
hazard ุดูููุง ุงู knowledge ุจุชุงุนุฉ ุงู nurses ูุงูุช ุนูู
194
00:12:39,730 --> 00:12:43,330
ุงู hazard ูุงูุช ุงููุชุงุฆุฌ 49% ู
ู ุงู nurses ูู ุงู
195
00:12:43,330 --> 00:12:46,170
primary health care centers ุนูุฏูู
ู
ุนููู
ุงุช ุนูู ุงู
196
00:12:46,170 --> 00:12:49,290
physical hazard ู 31% ุจุณ ููุท ุนูุฏูู
ุนูู ุงู
197
00:12:49,290 --> 00:12:53,190
biological hazard ู 30% ุฃู 31% ุนูุฏูู
ุนูู ุงู
198
00:12:53,190 --> 00:12:56,990
ergonomic and safety hazard 29% ูุงู ุนูุฏูู
ุนูู ุงู
199
00:12:56,990 --> 00:13:01,190
psychological hazardู26% ูุงูุช ุนูู ุงูู Chemical
200
00:13:01,190 --> 00:13:06,470
Hazard ูู
201
00:13:06,470 --> 00:13:10,540
ุฌููุง ููู Personal Protective Equipmentูุนูู ููุง
202
00:13:10,540 --> 00:13:14,180
during working we should wear protective equipment
203
00:13:14,180 --> 00:13:17,080
ูุงุฒู
ูุณุชุฎุฏู
ุงู protective equipment during working
204
00:13:17,080 --> 00:13:24,200
ุงููุฏู ู
ู ุงู protective equipment ุงููู ูู ูู
ูุน ุฃู
205
00:13:24,200 --> 00:13:27,400
prevent occupational health hazards ููุง ุฒู ู
ุง
206
00:13:27,400 --> 00:13:30,760
ูุดุงูููู ูู ุงูุฑุณู
ูุฐู ุงูุช ูู ูุจุณุช ุงู safety helmet
207
00:13:30,760 --> 00:13:36,710
ุงูุฎูุฐุฉ ุงูุฎูุฐุฉ ุงู safety helmet with hearingwith
208
00:13:36,710 --> 00:13:40,510
hearing and eye protection ุชุญู
ู ุญุงูู 100% ูู ุญู
ุงูุฉ
209
00:13:40,510 --> 00:13:43,670
ูู ูุนูู protection ููู ูู ู
ุงูุจุณุชุด ู
ู
ูู ูููู ุงู
210
00:13:43,670 --> 00:13:48,870
head ุนุฑุถ ูู 9% ูู hazard ุงู eyes 13% ูู ูุจุณุช ุงูุช
211
00:13:48,870 --> 00:13:52,550
ุงู jacket with shoulder in high visible colors ูู
212
00:13:52,550 --> 00:13:56,970
ุจุชุนู
ู protection 100% ูู ููู ูู ู
ุงูุจุณุชุด ู
ุงูุจุณุชุด
213
00:13:56,970 --> 00:14:03,000
ุฐุงุชู ุนูู ุงูู
ุฑูุญ ู
ู
ูู ุงู torso 19% ุงูุงุฑุจ 4%Risk ููู
214
00:14:03,000 --> 00:14:06,280
Occupational Hazard ูู ุจูุจูู ุจุงุณูุฌูููุฒ ุจุชุญู
ู ุญุงูู
215
00:14:06,280 --> 00:14:12,760
100%ูู ู
ุงูุจุณุชุด gloves ู
ู
ูู ุชููู high risk 18% ูู
216
00:14:12,760 --> 00:14:16,260
ูุจุณุช safety trousers ู
ู
ูู ุชุญู
ู ุญุงูู 100% ููู ูู
217
00:14:16,260 --> 00:14:20,500
ู
ุงูุจุณุชุด ู
ู
ูู ุชููู ุงู upper leg 2% ุงู knee 10% ุงู
218
00:14:20,500 --> 00:14:26,220
lower leg 6% ุงู ankle 11% ูู ูุจุณุช safety shoes
219
00:14:26,220 --> 00:14:30,000
ู
ู
ูู ุชุญู
ู ุญุงูู 100% ู
ุงูุจุณุชุด ู
ู
ูู ุชููู ุงู foot ุฅูุด
220
00:14:30,000 --> 00:14:33,620
risk ู ุงู incubation hazard 8%
221
00:14:37,680 --> 00:14:40,940
ูุฌูุฉ ููู Common injuries and accidents that occur
222
00:14:40,940 --> 00:14:44,060
in the workplace ูุนูู ู
ู
ูู ูุตูุฑ ุนููุง ุฃู ูุฐู ูู
223
00:14:44,060 --> 00:14:46,520
ุงูุฃุดูุงุก ุจุชุนุฑูููุง ุงูุช ููู ู
ู
ูู ุชู
ุฑ ุนูููุง ู
ุฑุฉ ุณุฑูุนุฉ
224
00:14:46,520 --> 00:14:49,080
ุฒู ุงู amputation ุงูุด ุงู first aid ูู ุญุงูุงุช ุงู
225
00:14:49,080 --> 00:14:52,180
amputation ุงููู ู put the amputated part in ice
226
00:14:52,180 --> 00:14:56,020
and transferPatient to the hospital ุฒู ุญุงูุงุช ุงูุดูู
227
00:14:56,020 --> 00:14:58,480
ู
ุนุฑูู ุงูุด ุงู first aid in case of shock ุงููู ูู to
228
00:14:58,480 --> 00:15:01,420
put patient in sublime position and both legs
229
00:15:01,420 --> 00:15:04,020
elevated to increase blood supply to the brain ูู
230
00:15:04,020 --> 00:15:06,580
ุญุงูุงุช ุงู fracture ุทุจุนุง ุงููู ูู don't move the
231
00:15:06,580 --> 00:15:11,740
patient and apply splint ุงูุฌุจูุฑุฉ Injuryto the eye
232
00:15:11,740 --> 00:15:16,920
ุทุจุนุง ุงููู ูู flushing eye for 15 minutes with
233
00:15:16,920 --> 00:15:21,020
running water ุทุจุนุง ุฒู electrical shock ุงููู DC
234
00:15:21,020 --> 00:15:24,280
shock ุทุจุนุง ุฒู ุงู burn ุงุฐุง ูุงู ุงู burn first degree
235
00:15:24,280 --> 00:15:27,480
burn ู
ู ุญุท cold compresses with second degree burn
236
00:15:27,480 --> 00:15:30,860
ู
ู ุญุท cold compresses and don't remove a blister
237
00:15:30,860 --> 00:15:31,640
ุชู
ุงู
238
00:15:34,690 --> 00:15:41,650
ุฅุฐุง ูุงู ูุงุฑุฏ
239
00:15:41,650 --> 00:15:44,310
ุฃุชุงู ุทุจุนุง we should instruct patient to be in
240
00:15:44,310 --> 00:15:47,110
comfortable position ุฅุฐุง ูุงู ููู ุฅู
ูุงููุฉ ููุฑ ุนูู
241
00:15:47,110 --> 00:15:49,990
ููุฑ ุญุท Oxygen 5 liter per minute ู
ู
ูู we should
242
00:15:49,990 --> 00:15:52,470
instruct patient to take Chordyl 5 milligram
243
00:15:52,470 --> 00:15:54,210
underlingual
244
00:15:55,560 --> 00:16:00,100
ุทุจุนุง ู
ู
ูู ูู three tablets ูุนุทู ุงูู
ุฑูุถ in case of
245
00:16:00,100 --> 00:16:03,320
heart attack and transfer the patient to the
246
00:16:03,320 --> 00:16:06,760
hospital as soon as possible ุฅุฐุง ูุงู son struck
247
00:16:06,760 --> 00:16:10,060
ุนูุฏู wet clothes ุงููู ูู ุถุฑุจุฉ ุดู
ุณุ ุฅุฐุง ูุงู stroke
248
00:16:10,060 --> 00:16:13,600
ุฅุฐุง ูุงู ุฌูุทุฉ ุฏู
ุงุบูุฉ instruct patient to be in
249
00:16:13,600 --> 00:16:17,000
supine position and hid in one sideto prevent
250
00:16:17,000 --> 00:16:21,280
aspiration pneumonia ุฅุฐุง ูุงู ุฅุจูุจุณู ุงููู ูู keep
251
00:16:21,280 --> 00:16:24,520
ูู ุญุงูุงุช ุงูุฅุจูุจุณู keep the patient away from
252
00:16:24,520 --> 00:16:29,060
danger and ask for help ููุฐู ุฃุดูุงุก ุฃุณุงุณูุฉ ูุนูู
253
00:16:29,060 --> 00:16:34,340
ุฃูุชูุง ู
ุนุธู
ูู
ุจุนุฑูุฉ ูู
ุฑ ุนููู ูุฐู ุนู
ููุฉ ุงูุฅุณุนุงู
254
00:16:34,340 --> 00:16:37,640
ุงูุฃูู ุฃุฎูุฑุง ุฅูุด ุงู occupation health and safety in
255
00:16:37,640 --> 00:16:39,780
Palestine ูู ุนูุฏูุง occupation health and safety in
256
00:16:39,780 --> 00:16:42,390
Palestineุ yesูุญู ูุฏููุง ุฅุณุชุฎุฏุงู
ุงูู Health and
257
00:16:42,390 --> 00:16:45,510
Safety in Palestine ูุฏููุง ุฑููุฒ ู ุฑุฌูููุดู ููู
258
00:16:45,510 --> 00:16:53,070
ู
ุดููุชูุง ููุท ูุญุชุงุฌ ุฅุชุจุงุน ุจุฏูุง ู
ุชุงุจุนุฉ ุฅู ุงูุฃู
ูุฑ
259
00:16:53,070 --> 00:16:56,870
ู
ุงุดูุฉ ุญุณุจ ุงู rules ู ุงู regulation ููุง ูุฃ ุทุจุนุง
260
00:16:56,870 --> 00:17:00,830
ุฃุดูุฑูู
ุนูู ุญุณู ุงุณุชู
ุงุนูู
ูุฅู ุดุงุก ุงููู ููุชูู ูู
261
00:17:00,830 --> 00:17:02,870
ู
ุญุงุถุฑุฉ ุฃุฎุฑู ุจุฅุฐู ุงููู
|