-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalks.html
2297 lines (1516 loc) · 98.4 KB
/
talks.html
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>
<html>
<head>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '771007949934240');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=771007949934240&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127415458-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127415458-1');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8">
<title>Increase your fulfillment in life</title>
</head>
<body style="background-color:pink;">
<style rel='stylesheet' type='text/css'>
div.transbox {
margin: 5px;
background-color: #ff4d4d;
border: 1px solid black;
opacity: 0.8;
filter: alpha(opacity=60); /* For IE8 and earlier */
}
@media (max-width:629px) {
img#optionalstuff {
display: none;
}
}
body {
background-color:;
}
.button {
background-color: red;
border: none;
color: white;
padding: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
}
.button1 {border-radius: 6px;}
.button2 {border-radius: 6px;}
.button3 {border-radius: 6px;}
.video-container {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden;
}
.video-container iframe, .video-container object, .video-container embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
</style>
<div class="video-container" style ="text-align: center" id="content">
<!<img id= "optionalstuff" src="./rose.jpeg" align="right" class="ribbon" alt="Hi"/>
<iframe id = "frametest" width="400" height="210" src= "https://www.youtube.com/embed/kUmren2c0yc?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<!"https://www.youtube.com/embed/gj5xpttuXuI?rel=0 "
<!<img src="./rose.jpeg" align="left" class="ribbon" alt="Hi"/>
<div id ="love_matters" style="color:red;" style ="text-align: center">love is what really matters</div>
</div>
<div class ="transbox">
<h2 id = "title" align ="center">How to reduce mental suffering</h2>
<p id = "my_name" style="font-size:10px">By Isam Elbousserghini</p>
<p id ="intro"><font face = " arial" > Mental skills to reduce suffering: you can ask questions,
related to emotional well being and meditation.In this app you can ask about love, fear, anxiety,
work, sadness,happiness, insomnia, boredom, panic, guilt and much more</font></p>
<input size = 25 align="middle" type="text" id ="mytext" placeholder="Ask your question about emotions"/>
<button id ="submit_ques" align="middle" onclick = "submitquestion()" class="button button2">submit question</button>
<p id="tellrandom">Try a random topic</p>
<button id ="rtopic" onclick = "random_topic()" class="button button1">Random topic</button>
<button id ="mbutton" onclick="ChangeLanguage()" class="button button3" >العربية المغربية</button>
<p id = "work"> <font face = "arial" > Hi, the ebooks below talks more about how to enhance wellbeing</font></p>
<p id ="paper">
<!<a id ="link" href="https://docs.google.com/document/d/1cDZAn_aYELlSWr4FX01mYMTufhhH7WwYAU-Tao3k6Ao/edit?usp=sharing">
<!<img border="0" alt="theory" src="./sunsetlogo.jpeg" width="100" height="100">
<!I wrote a paper about how to become happy, you can read it here
</a>
<a id ="blink" href="https://www.amazon.co.uk/dp/B00HR9GPJ2">
<img border="0" alt="meditationbook" src="./meditationtecnic.jpg" width="100" height="150">
</a>
<a id ="blink" href="https://www.amazon.co.uk/dp/B07JH5N8WL">
<img border="0" alt="theory" src="./laws.jpeg" width="100" height="150">
</a>
</p>
<p id ="sponsor">If you feel like sponsoring me to keep maintaining this website by adding more content,
you can contribute by paypal on the following email: <h4>[email protected]</h4>
-Thanks for your help-</p>
<p id ="vnumber"> </p>
<p id="medical"> Please seek medical help if you have thoughts of self harm, this advice is meant as an extra support</P>
</div>
<script type="text/javascript">
var intro =' Mental skills to reduce suffering: you can ask questions,\
related to emotional well being and meditation.In this app you can ask about love, fear, anxiety,\
work, sadness,happiness, insomnia, boredom, panic, guilt and much more'
var dont_work = 'relax, walk in nature and meditate,\
dont work too hard learn to enjoy life more, \
just be present, don\'t try to be anything special, \
just love yourself exactely how you are right now';
var sadness= 'sadness manifests itself as tension in the upper scalp, massage it vigorously for relief \
there are two ways to deal with sadness, one physical and one mental: the physical is to locate the area \
in the upper scalp that is perpetrating the sensations of sadness and massage it, the second is \
to fully accept it so as not to offer any resistance to it so as relax the body, watch the video above \
it explains how to deal with it';
var love='love is the sublime emotion and is the root of all positive emotions, cultivate it for dramatic \
enhancement of quality of life, watch the video above that explains how \.There is nothing more beautiful nor \
more pleasurable for the human psyche than being immersed in pure love, \
I will explain what I mean by being immersed in love, If you repeat to yourself \
the words, I love you, I love you repeatedly you train your mind to imprint \
this pattern in your mind and the words and the feeling of comfort and security \
that comes with it will create a pattern of associations between the events occurring. \
The more this pattern starts to dominate your life the more content, \
happy and joyous you will become. Be well my friends \
you can become happier by harnessing the power of love';
var want='wanting or craving is at the source of all suffering \
, practice gratitude to reduce wanting';
var give='giving is a pleasure and enhances the quality of life \
of both the giver and the taker it what is given is good';
var happy='happiness is an internal state of being, external situations \
have no bearing on the internal state, one sure way to increase happiness \
and satisfaction in life is to invoke love into your life, watch \
the video above to get an idea on how to do that';
var fear='fear is at the root of all negative emotions, \
you can easily get rid of it by a self love meditation,\
watch the video above to learn more about what fear really is';
var panic='panic attacks are when you start to fear fear itself, \
cure by full acceptance of fear as an emotion, total surrender to present moment cures panic attacks \
watch the video above, it explains how to rid yourself of fear';
var cant_sleep ="if you can't sleep, just be there don\'t resist, just shift your attention \
from your mind to your body, feel the aliveness of your body \
keep noticing your body, shift your attention to your breath and just be there once your attention is no \
longer in your thoughts, sleep comes easily, the video above explains more";
var guilt ='The emotion of guilt is fear in disguise, it is fear of what others might say or do \
so we direct this fear towards ourselves to alter behavior and it displays itself as self hatred and guilt \
to rid yourself of this terrible emotion just do a meditation of self love as explained in the video above';
var boredom ='Boredom is a really misunderstood emotion, most people attribute boredom to lack of money \
or lack of available activities, in fact boredom is a type of self hatred and is the result of the feeling \
of not wanting to be with oneself, it is a fear and we know that love reduces fear and that \
acceptance is a variant of love, so we accept ourselves fully \
to reduce boredom as explained in the video above';
var suicide = 'Thought of self harm or thoughts of suicide can occur in the mind \
as an attempt to escape from pain and fear, there are many ways to deal with pain and fear \
and here is one : just love yourself unconditionally, the video above explains more ';
var meditation ='Meditation is an ancient practice that has been used to enhance quality of life \
and to deal with emotional difficulties for thousands of years, please watch the video above where I \
explain its benefits and features';
var hatred ='Hatred is an emotion that is derived from fear and it makes a lot of people suffer uncessarily \
in short it is cured with love meditation, watch the video for more indepth explanation';
var who_are_you ='My name is isam elbousserghini, I used to be an engineer and went through a very difficult \
period of my life where I experienced tremendous mental and emotional pain, \
I used my engineering skills to develop a way to come out of pain using cognitive methods \
which I am sharing in this interactive website';
var relax ='when we are anxious we instinctively tense up our muscles, for most people it is \
the muscles of the neck and scalp for others it could be in the back or stomach area \
watch this video above that explains how to deal with tension in the body ';
var gratitude ='Gratitude is an emotion that is responsible for a lot of happiness \
in order for a person to become happy and enhance quality of life, gratitude should be cultivated \
and praticed daily, the video above shows how';
var how_mind_works ='When a person trains herself in meditation a process of re-patterning \
of the brain happens, that is why meditation works, watch the video above to learn more';
var anxiety ='Anxiety is simply a form of fear that has a lingering characteristic, it is a background feeling \
of unease and suffering, if it lasts for a long time, it can trigger clinical depression, as anxiety is a variant \
of fear it can be cured with a self love meditation and/or by directing love to the source of anxiety \
watch the video above for more explanation';
var thought='Do not beleive every thought that comes to you, this simple action will liberate you \
from the grip of conditioning, watch the video for more explanation';
var free_mind="the conditioned mind is by definition a slave mind.Society, our parents, our environmet, all have \
conditioned us to be what we are, for the mind that is not free, this is where action and thoughts \
are initiated, watch the video for more insight";
var morality ='Morality or good morality is the conduct that does not lead to the harm of oneself or others \
, when we have good morality in our lives, we gain peace of mind which lead us to have good ability to concentrate \
which lead us to have good mental and intellectual abilities which lead us to make good descision leading to \
the happiness of all including ourselves, watch the video above, it explains this point in more depth';
var pain ='Physical and emotional pains can be dealt with with a full acceptance meditation \
watch the video that explains how';
var states ='Higher states of being are just extremely enjoyable states that the human mind is capable of \
generating, watch the video where I explain how to reach them';
var surrender ='Surrender to what has already happened, we need to understand that resisting what has already happened \
is futile, watch the video above it explains it more';
var reality ='It is very enjoyable to live in reality and not in ones thoughts,watch \
the video below that describes this idea';
var awarness ='awarness is who you are, you are not your body, you are not your thoughts, you are not your feelings, \
you are the observer observing all this, watch the video above where I talk about awarness';
var resistance ='Resistance of the mind is responsible for the larger proportion of human mental suffering. \
watch the video above to understand the mechanism by which it operates so that you can \
reduce it and thus reduce suffering';
var emotion_contraction ='The thought, emotion, contraction cycle is what causes moods to arise, \
learn to break it and come out of the cycle and thus improve mood, watch the video above to get a explanation';
var mind_app ='Mind apps is simply an analogy of how a person can change how he or she thinks simply by installing an idea in \
the mind, watch the video above for an explanation';
var create_reality='Your thoughts create your subjective reality which in turn \
creates your objective reality, watch the video above that explains the topic';
var envy ='Envy or jealousy is a negative emotion that can make the person suffer tremendously \
watch the video to learn a technique to deal with it ';
var friendliness ='Universal friendliness is the universal wish that you have for all \
beings to be well, happy, joyfull and serene, watch the video above where I describe the process of doing it';
var emotion ='The emotion is an entity that rises in the mind as a result of a thought which calls an emotion which \
makes the body contract which brings more thoughts of the same nature and the cycle continues \
watch the video above for more explanation'
var shame ='Shame is an emotion from the family of fear emotions and is dealt with swiftly \
by applying self love to it, watch the video above that explains how to deal with it'
var app_introduction='Here I introduce the app and describe briefly how to use it \
watch the video above for more info'
var modular_mind ='The theory of the modular mind describes pretty accurately how thoughts and emotions interact to compete \
for your attention, watch the video above that descibes this in more detail'
var anger ='Anger is an explosive emotion, it rises suddenly in the mind in a fraction of a second \
watch the video above that explains how to deal with it';
var addiction ='Addictions can destroy lives, they can be so powerful that they can \
completely alter the destiny of a person, watch the video above where I explain how to \
rid yourself from addictions';
var senses ='Try to be mindfull of the information coming from the senses rather than being absorbed \
in your thoughts, watch the video above where I discuss the idea';
var optional_suffering ='Pain is inevitable but suffering is optional \
watch the video above that expands on this idea';
var motivation ='Did you know that self approval and self love is \
necessary to keep your motivation to acheive any goal in life \
watch the video above that describes this point in more detail';
var creativity ='Creativity is essential to human progress, it is the tool that makes life more interesting \
in the video above i describe two cognitive tools to encourage it';
var radio_mind ='Your mind is like a radio reciever, whatever you tune into \
you will hear, so tune your mind to the right stations, watch the vide above for more explanation';
var laws_emotion ='The laws of emotion is a theory that I developed that descibes \
the human emotional system and how to deal with emotions, watch the video above for \
more info'
var third_state ='The third state of being possible for a human being is not sleep nor being awake watch the video above for more \
'
var mind_matters ='The mind is what matters when it comes to how we feel \
watch the video above for a summary of this idea'
var all_strength_love ='All power and strength comes from love and not fear \
watch this video to harness this law to become strong'
var three_brains=' We all have three brains within us guiding our behaviour, watch the video above \
for an explanation'
var addiction ='Being addicted to psychoactive drugs is a terrible curse \
let me show you how to free yourself from this slavery'
var injustice ='Sometimes in life we encounter injustice towards ourselves or our loved ones \
watch the video where I show how to deal with injustice without loosing your peace of mind'
var immunity ='The immune and regenerative systems keep us healthy, free from disease and repair \
our bodies, learn to kickstart them with the methods described in the video above \
'
var words ='Words have the power to program our minds \
be careful what words you expose yourself to \
including self talk and negative news \
only expose yourself to words that are going to motivate you to become \
great, watch the video above for more info \
'
var limbic ='Meditation can be viewed as a way to control the limbic system by the use of the \
neocortex, watch the video above for more information'
var learning ='In the video above I talk about the link between love \
and learning and reveal thre meditations that can help you get more concentration to enable \
focus and facilitate learning'
var rejection='In the video above I illustrate 4 mini meditations for delaing \
with rejection and regaining peace of mind'
var pharmacy ='In this video above I revael the chemicals that get released in our bodies \
as a result of the mini meditations I bring in other videos'
var depression ='In this video above I reveal 4 mini meditations to deal with depression'
var science ='You certainly do not need to belong to the church of science to do science. \
Science can be practiced by anyone regardless, watch the video above for more'
var patience='In the video above I show a simple method to develop the \
muscle of patience'
var nature='In the video above I explain why nature heals us'
var recognition_emotion= 'In the video above I explain why recognition of emotion present is very important'
var appreciation='In the video above I hghlight the link between value, appreciation and gratitude'
var placebo ='In the video above I explain the placebo, nocebo effects \
and their link to black magic'
var arabic_reality ='حاول أن تعيش في الواقع وليس في عالمك الشخصي ، شاهد الفيديو لمزيد من الشرح \
'
var test_arabic ='عصام البوسرغيني: انا هو خالق هادا الموقع'
var arabic_intro ='في هاذا الموقع يمكنك أن تطرح أسئلة \
عندها علاقة بالعواطف و جلب راحة البال \
لكي تصبح سعيدا \
'
var arabic_love ='عاطفة الحب هي مصضر العواطف الحميدة \
شاهد الفديو لمعلومات اكتر\ \
لكي تصبح سعيدا \
'
var arabic_fear ='الخوف هو مصضر كل العواطف الغير الحميدة \
شاهد الفديو لمعلومات اكتر\ \
لكي تصبح سعيدا \
'
var arabic_sadness ='يمكن إزالة عاطفة الحزن بسهولة عن طريق التقنيات المذكورة في الفيديو أعلاه \
'
var arabic_laws_emotion ='قوانين العاطفة هي النظرية التي طورتها منذ خمس سنوات. شاهد الفيديو للحصول على ملخص \
\ '
var arabic_emotional_system ='يعمل النظام العاطفي طوال الوقت في العقل البشري.استكشف المزيد من خلال مشاهدة الفيديو أعلاه \
\
'
var arabic_self_beleif ='التقة بالنفس هي سر النجاح في اي مشروع او مبادرة \
الفديو اعلاه يشرح اكثر \
\
'
var arabic_modular_mind ='نضرية الوحدات العقلية هي نضرية مهمة لفهم القوى المحركة للانسان \
\
'
var arabic_hatred =' تعامل مع عاطفة الحقد بالود العالمي \
شاهد الفديو اعلاه للمزيد من المعلومات \
\
'
var arabic_envy ='في هدا الفديو اشرح كيفيتة التعامل مع الحسد \
\
'
var arabic_gratitude ='ان الشاكرين سعداء و الغير الشاكرين تعساء \
\
'
var arabic_surrender ='عذاب النفسي يأتي من معارضة ما وقع، اسقط المعارضة، يسقط العذاب \
استسلم للواقع\
'
var arabic_awarness ='ان الفهم الشامل لما هو الوعي يمكنك من الحصول \
على الحرية من برمجة المجتمع \
شاهد الفديو للمزيد من المعلومات \
'
var arabic_depression ='يمكن للاكتئاب أن يجعل الحياة غير ممتعة على الإطلاق \
شاهد الفيديو حيث أشرح ما يجب فعله للتغلب على الكآبة\
\
'
var arabic_strength ='استخدم قوة الحب لتعزيز قدراتك الإبداعية وبالتالي تصبح ثريًا \
\
'
var arabic_desire ='الرغبة هي مصدر كل المعاناة ، عندما يكون لديك رغبة أقل لديك معاناة أقل ، شاهد الفيديو أعلاه للحصول على مزيد من المعلومات \
\
'
var arabic_brains ='يتم وصف العقول الثلاثة التي تحكم حياتنا في الفيديو أعلاه \
\
'
var arabic_addiction= 'ادمان المخدرات هو لعنة رهيبة \
شاهد الفديو اعلاه للتخلص من هذه العبودية \
\
'
var arabic_justice ='عندما نحتاج إلى استعادة العدالة ، اتبع هذه الخطوات للحصول على القوة العقلية للقتال من أجل الصواب \
\
'
var arabic_old_age=' الشيخوخة و المرض \
كل انسان معرض للشيخوخة و المرض \
شاهد الفديو لمعلومات اكثر \
\
'
var arabic_pain ='الألم أمر لا مفر منه ولكن المعاناة اختيارية ، شاهد الفيديو أعلاه للحصول على المزيد \
\
'
var arabic_panic ='اضطرابات القلق و نوبات الهلع قضية مفهوم علاجها \
شاهد الفديوا اعلاه لتتخلص منها \
\
'
var arabic_shame='هنا اشرح طريقة تقنية للتعامل مع الخجل \
شاهد الفديو لمعلومات اكثر \
\
'
var arabic_calm='اشرح في هاذا الفديو اعلاه كيف ترجع هدوء الجسم و العقل \
\
'
var arabic_immunity =' اشرح في الفديو اعلاه علاقة الجهاز العاطفي مع جهاز المناعة \
\
'
var arabic_words =' ان الكلمات التي تدخل دماغنا تبرمجنا \
شاهد الفديو اعلاه لمعلومات اكثر \
'
var arabic_wellbeing ='هنا اكشف عن طريقة تقنية للمزيد من الشعور بالرفاهية \
شاهد الفديو اعلاه للمزيد من المعلومات \
\
'
var arabic_anger ='في الفديو اعلاه اكشف عن طرق تقنية للتخلص من الغضب \
\
'
var arabic_learning ='في الفديو اعلاه اكشف عن طرق تقنية للم زيد من قوتك \
التركيزية \
\
'
var arabic_rejection='في الفديو اعلااه اكشف عن اربع طرق للتعامل مع الرفض \
\
'
var arabic_pharmacy='في الفديو اعلااه اكشف عن المخدرات الست الطبيعية التي يفرزها الجسم \
\
'
var arabic_science='في هاذا الفديو اعلاه اشرح الطريقة العلمية و احض العرب و المسلمون ان يخترعون \
\
'
var arabic_patience='في الفديو اعلاه اكشف عن طريقة بصيطة للمزيد من قوة الصبر \
\
'
var arabic_nature='عل تعلم ان الطبيعة تساعد على الشفاء من جمييع المراض \
الفديو اعلاه يفسر كيف \
\
'
var arabic_emotion_recognition='القدرة علئ تحديد عواطفك هي من اهم المهارات الي تساعد علئ التحكم في العواطف \
\
'
var arabic_appreciation='في الفديو اعلاه اربط بين الشكر و الثمن و القيمة \
'
var arabic_placebo='في الفديو اعلاه اربط بين التاتير الوهمي و السحر و \
السحرة \
'
function ChangeLanguage(){
if (document.getElementById("mbutton").innerHTML=="العربية المغربية"){
document.getElementById("mbutton").innerHTML="Change to English"
document.getElementById("intro").innerHTML = arabic_intro;
document.getElementById("love_matters").innerHTML = "الحب هو سر نجاح الامم";
document.getElementById("title").innerHTML = "كيفية الحد من المعاناة النفسية \
";
document.getElementById("my_name").innerHTML = "صنع و اختراع عصام البوسرغيني"
document.getElementById('frametest').src = "https://www.youtube.com/embed/LyT7XX8aEEo?rel=0" ;
document.getElementById("mytext").placeholder = "يمكنك ان تسأل هنا"
document.getElementById("submit_ques").innerHTML="ارسل السؤال \
"
document.getElementById("tellrandom").innerHTML="اختر فيديو عشوائي"
document.getElementById("rtopic").innerHTML=" موضوع عشوائي"
document.getElementById("work").innerHTML=""
document.getElementById("work").style.font= " arial,serif";
document.getElementById("medical").innerHTML=""
document.getElementById("vnumber").innerHTML=""
// document.getElementById("paper").innerHTML=""
//document.getElementById("paper").style.visibility = "hidden";
document.getElementById("sponsor").innerHTML="شكرا على انتباهكم"
document.getElementById('rtopic').setAttribute( "onclick", "javascript: arabic_random();" );
document.getElementById('submit_ques').setAttribute( "onclick", "javascript: arabic_submit();" );
}else{
document.getElementById("intro").innerHTML = intro;
document.getElementById("mbutton").innerHTML="العربية المغربية"
document.getElementById("love_matters").innerHTML = "Love is what really matters";
document.getElementById("title").innerHTML = "How to reduce Mental Suffering"
document.getElementById("my_name").innerHTML = "by Isam Elbousserghini"
document.getElementById('frametest').src = "https://www.youtube.com/embed/gj5xpttuXuI?rel=0" ;
document.getElementById("mytext").placeholder = " ask your question about emotions"
document.getElementById("submit_ques").innerHTML="submit question"
document.getElementById("tellrandom").innerHTML="Try a random topic"
document.getElementById("rtopic").innerHTML="Random Topic"
document.getElementById("paper").style.visibility = "visible";
document.getElementById("vnumber").innerHTML=""
document.getElementById("work").innerHTML="Hi, let me answer your questions about how to enhance your wellbeing"
document.getElementById("medical").innerHTML="Please seek medical help if you have thoughts of self harm, this advice is meant as an extra support"
//document.getElementById("link").text ="I wrote a paper about how to become happy, you can read it below"
document.getElementById("sponsor").innerHTML="If you feel like sponsoring me to keep maintaining this website by adding more content, \
you can contribute by paypal on the following email: "
document.getElementById('rtopic').setAttribute( "onclick", "javascript: random_topic();" );
document.getElementById('submit_ques').setAttribute( "onclick", "javascript: submitquestion();" );
document.getElementById("intro").style.font= " arial,serif";
document.getElementById("work").style.font= " arial,serif";
}
}
function arabic_random(){
var items =range(1,37);
number_videos = items.length;
document.getElementById("vnumber").innerHTML="number of videos available is: "+ number_videos;
document.getElementById("vnumber").style.color = "blue";
var item = items[Math.floor(Math.random()*items.length)];
if (item ===1){
document.getElementById("work").innerHTML = arabic_love;
document.getElementById('frametest').src = "https://www.youtube.com/embed/_iGrZXrvMRI?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
//document.getElementById("work").style.color = "red";
}else if (item===2){
document.getElementById("work").innerHTML = arabic_fear;
document.getElementById('frametest').src = "https://www.youtube.com/embed/aA9LB6zYcn8?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===3){
document.getElementById("work").innerHTML = arabic_sadness;
document.getElementById('frametest').src = "https://www.youtube.com/embed/DtV0V58TvuY?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===4){
document.getElementById("work").innerHTML = arabic_reality;
document.getElementById('frametest').src = "https://www.youtube.com/embed/LexjDvpv7Fw?rel=0";
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===5){
document.getElementById("work").innerHTML = arabic_laws_emotion;
document.getElementById('frametest').src = "https://www.youtube.com/embed/1yeDAwFlPr8?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===6){
document.getElementById("work").innerHTML = arabic_emotional_system;
document.getElementById('frametest').src = "https://www.youtube.com/embed/PdweB1hXpxg?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===7){
document.getElementById("work").innerHTML = arabic_self_beleif;
document.getElementById('frametest').src = "https://www.youtube.com/embed/TKTro04qvK8?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===8){
document.getElementById("work").innerHTML = arabic_modular_mind;
document.getElementById('frametest').src = "https://www.youtube.com/embed/2spQixoZqCc?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===9){
document.getElementById("work").innerHTML = arabic_hatred;
document.getElementById('frametest').src = "https://www.youtube.com/embed/bwBJaW6qJ3E?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===10){
document.getElementById("work").innerHTML = arabic_envy;
document.getElementById('frametest').src = "https://www.youtube.com/embed/26MyLQz4UYc?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===11){
document.getElementById("work").innerHTML = arabic_gratitude;
document.getElementById('frametest').src = "https://www.youtube.com/embed/KSfbFpPZ-V4?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===12){
document.getElementById("work").innerHTML = arabic_surrender;
document.getElementById('frametest').src = "https://www.youtube.com/embed/8_fvn_jTIdM?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===13){
document.getElementById("work").innerHTML = arabic_awarness;
document.getElementById('frametest').src = "https://www.youtube.com/embed/jMvVXfAkyNk?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===14){
document.getElementById("work").innerHTML = arabic_depression;
document.getElementById('frametest').src = "https://www.youtube.com/embed/fWvgpsX5HgI?rel=0";
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===15){
document.getElementById("work").innerHTML = arabic_strength;
document.getElementById('frametest').src = "https://www.youtube.com/embed/_dU5CRcx2OI?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===16){
document.getElementById("work").innerHTML = arabic_desire;
document.getElementById('frametest').src = "https://www.youtube.com/embed/Mr_wYCDcAoM?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===17){
document.getElementById("work").innerHTML = arabic_brains;
document.getElementById('frametest').src = "https://www.youtube.com/embed/HiwZF6KAj6o?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===18){
document.getElementById("work").innerHTML = arabic_addiction;
document.getElementById('frametest').src = "https://www.youtube.com/embed/UnKUndu3dU4?rel=0";
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===19){
document.getElementById("work").innerHTML = arabic_justice;
document.getElementById('frametest').src = "https://www.youtube.com/embed/xYeW0olgZCg?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===20){
document.getElementById("work").innerHTML = arabic_old_age;
document.getElementById('frametest').src = "https://www.youtube.com/embed/zq18J8nVOsI?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===21){
document.getElementById("work").innerHTML = arabic_pain;
document.getElementById('frametest').src = "https://www.youtube.com/embed/s9kB2YHzB-g?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===22){
document.getElementById("work").innerHTML = arabic_panic;
document.getElementById('frametest').src = "https://www.youtube.com/embed/7IZwv6hglKQ?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===23){
document.getElementById("work").innerHTML = arabic_shame;
document.getElementById('frametest').src = "https://www.youtube.com/embed/m2MBphvdZlU?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===24){
document.getElementById("work").innerHTML = arabic_calm;
document.getElementById('frametest').src = "https://www.youtube.com/embed/MzH-iNzmfbs?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===25){
document.getElementById("work").innerHTML = arabic_immunity;
document.getElementById('frametest').src = "https://www.youtube.com/embed/w5q6YpglHr8?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===26){
document.getElementById("work").innerHTML = arabic_words;
document.getElementById('frametest').src = "https://www.youtube.com/embed/Cx4KiTSK6DU?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===27){
document.getElementById("work").innerHTML = arabic_wellbeing
document.getElementById('frametest').src = "https://www.youtube.com/embed/efTCgT9sWdU?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===28){
document.getElementById("work").innerHTML = arabic_anger
document.getElementById('frametest').src ="https://www.youtube.com/embed/kGcglhSmRgA?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===29){
document.getElementById("work").innerHTML = arabic_learning
document.getElementById('frametest').src ="https://www.youtube.com/embed/jg6nALpqyII?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===30){
document.getElementById("work").innerHTML = arabic_rejection
document.getElementById('frametest').src ="https://www.youtube.com/embed/A-9y-yFEW7A?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===31){
document.getElementById("work").innerHTML = arabic_pharmacy
document.getElementById('frametest').src ="https://www.youtube.com/embed/U2usB7a0Yck?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===32){
document.getElementById("work").innerHTML = arabic_science
document.getElementById('frametest').src ="https://www.youtube.com/embed/DoIcIFFIf-Q?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===33){
document.getElementById("work").innerHTML = arabic_patience
document.getElementById('frametest').src ="https://www.youtube.com/embed/xV7GEGLKQRs?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===34){
document.getElementById("work").innerHTML = arabic_nature
document.getElementById('frametest').src ="https://www.youtube.com/embed/fDfZpU24PHc?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===35){
document.getElementById("work").innerHTML = arabic_emotion_recognition
document.getElementById('frametest').src ="https://www.youtube.com/embed/fDfZpU24PHc?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===36){
document.getElementById("work").innerHTML = arabic_appreciation
document.getElementById('frametest').src ="https://www.youtube.com/embed/ctGKBxCBqbk?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (item===37){
document.getElementById("work").innerHTML = arabic_placebo
document.getElementById('frametest').src ="https://www.youtube.com/embed/RgxLF8gzx68?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}
};
function arabic_submit(){
var quest= document.getElementById("mytext").value;
question = quest.toLowerCase();
if (question.includes("الحب")) {
document.getElementById("work").innerHTML = arabic_love;
document.getElementById('frametest').src = "https://www.youtube.com/embed/_iGrZXrvMRI?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
//document.getElementById("work").style.color = "red";
}else if (question.includes("الخوف")) {
document.getElementById("work").innerHTML = arabic_fear;
document.getElementById('frametest').src = "https://www.youtube.com/embed/aA9LB6zYcn8?rel=0";
// document.getElementById("work").style.fontFamily= "Courier New";
//document.getElementById("work").style.color = "red";
}else if (question.includes("الحزن")||(question.includes("حزين"))||(question.includes("حزن"))){
document.getElementById("work").innerHTML = arabic_sadness;
document.getElementById('frametest').src = "https://www.youtube.com/embed/DtV0V58TvuY?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
//document.getElementById("work").style.color = "red";
}else if (question.includes("الحقيقة")){
document.getElementById("work").innerHTML = arabic_reality;
document.getElementById('frametest').src = "https://www.youtube.com/embed/LexjDvpv7Fw?rel=0";
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("العاطفة")||(question.includes("قوانين"))){
document.getElementById("work").innerHTML = arabic_laws_emotion;
document.getElementById('frametest').src = "https://www.youtube.com/embed/1yeDAwFlPr8?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("الجهاز")||(question.includes("العاطفي"))){
document.getElementById("work").innerHTML = arabic_emotional_system;
document.getElementById('frametest').src = "https://www.youtube.com/embed/F7FmyQyo8SA?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("بالنفس")||(question.includes("التقة"))){
document.getElementById("work").innerHTML = arabic_self_beleif;
document.getElementById('frametest').src = "https://www.youtube.com/embed/TKTro04qvK8?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("وحدات")||(question.includes("العقل"))){
document.getElementById("work").innerHTML = arabic_modular_mind;
document.getElementById('frametest').src = "https://www.youtube.com/embed/2spQixoZqCc?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("الحقد")){
document.getElementById("work").innerHTML = arabic_hatred;
document.getElementById('frametest').src ="https://www.youtube.com/embed/bwBJaW6qJ3E?rel=0" ;
//document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("الحسد")){
document.getElementById("work").innerHTML = arabic_envy;
document.getElementById('frametest').src = "https://www.youtube.com/embed/26MyLQz4UYc?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("الشكر")||(question.includes("الشاكر"))||(question.includes("الشكور"))||(question.includes("شكور"))){
document.getElementById("work").innerHTML = arabic_gratitude;
document.getElementById('frametest').src = "https://www.youtube.com/embed/KSfbFpPZ-V4?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";
}else if (question.includes("استسلم")||(question.includes("الاستسلام"))){
document.getElementById("work").innerHTML = arabic_surrender;
document.getElementById('frametest').src = "https://www.youtube.com/embed/8_fvn_jTIdM?rel=0" ;
// document.getElementById("work").style.fontFamily= "Courier New";
// document.getElementById("work").style.color = "red";