50th Anniversary of Malaysia-Korea Diplomatic Relations

Governments of Federation of Malaya and The Republic of Korea

February 23, 1960


Joint Communique

A Korean Goodwill Mission led by Mr. Dong Jo Kim, Special Envoy of the President of the Republic of Korea has made a formal visit to the Federation of Malaya from February 21 to 23, 1960.

Malaysia-Korea Diplomatic Relations Commemorative Stamps

It has been 50 years that Malaysia and Republic of Korea has it diplomatic ties going on. The two nations are celebrating this 50 years of good historical journey together in both countries.

Reforestation, Tectona Grandis and Azadirachta Excelsa

Diminishing forests are due to excessive and illegal loggings because of a high demand for timber in woodbased industries.


To regreen the nation, a well concerted efforts has to be done to maintain a sustainable forest management. The present supply of forest resources in general has tremendously depleted and replanting activities should have been actively pursued by now.

Festive Road Accident and Our Attitude

With tragic predictability, every year brings us several particularly horrendous road accidents. Every festive season, with thousand of people returning home or going to holiday resorts, in spite of reminders and advice about being patient in jams, there is a cacophony of crash, bang, groan. For a few days the loss is covered in all the media; graphic pictures of mangled heaps of metal arousing interest, concern and pity.

Drug abuse, addiction and trafficking

Drugs abuse degrading human beings, changing societies and having disastrous effects on human behaviour, undermining social stability and impoverishing nations. 


Growing evidence showed that an alarmingly increasing number of children are being destroyed every second all over the world through drug addiction. 

Plastics - Reduce, Reuse, Recycle?


PLASTICS, a cheap and durable `friend' for years and once hailed as the most useful invention of modern times, is now said to be the worst waste pollutant, an enemy to those who are environment-conscious because it is non-bio-degradable. And still many of us unaware of the environmental dangers posed by dumping which hudreds of years to decompossed and burning them will make it even worst which contribute to Earth's ozone holes development, acid rain pelts disappearing forests and the planet sweats under global warming. 

A sick planet is not healthy for us. 

Reuse, reduce and recycle - the philosophy of environmentalists worldwide is making inroads into the Malaysian scene. The last of the three "Rs", the most lucrative of the lot, is all set to be big business in the country. The recycling industry here exists where there is money to be made but the first two "Rs" should be emphasized.

There is no escaping from the fact that we will have to pay for whatever we do to or do not do for our environment. Sooner or later. The unsavoury present-day signs, however, are screaming the sooner the better. If we continue to dream uncaringly on until our sins of pollution and waste accumulate to hellish proportions, not only would our vision of our future be blighted, we may be left, if we were to survive, without a future in sight.

No one can deny the fact that our environment has suffered and has taken as much as it can; it can take no more. Global-warming and international concern have intensified even as scientists and politicians recognise rather belatedly that not only do the welfare and economies of their countries lie at the mercy of the environment, even mankind's survival is at stake.

It is unclear whether public awareness alone without enforcement, a genuine commitment to protecting the environment. Getting the public to recycle or reclaim packaging materials such as paper, metals, glass and plastics instead of simply throwing them away has always been a challenge for the packaging industry. In an on-going battle to save the environment, investment in the latest technology to recycle such materials may cost packaging companies dearly in the short run, but it is also increasing making good sense as consumers become more environment conscious and responsible. The environment consciousness is the key to our survival. For example, we could refuse a plastic bag for our purchase although it is very difficult to persuade shopkeepers not to give us one.

We also have to come up with something not only to reduce, reuse or recycle to solve the dilemma, or improve on a solution, particularly if it benefits a lot of people especially future generation. May be we might add in a few more 'Rs', Re-think, refill, repair and so on.

For example, the first thing to do is to re-think one's life, in one's home and in the office, in terms of the environment and to reduce one's consumption as a matter of course.

Refilling, for example, which is still a new concept to customers in Malaysia although it was introduced 15 years ago by various companies that used plastic as their products container to reuse it, has to be well and continuously promoted.

Governments also should force the plastic industries and encourage public to use products made of 100 per cent biodegradable and compost able materials such as from sugar cane husks (baggase) and corn waste which decompose faster (45 to 180 days - Return 2 Green) or products made of fibres from oil palm Empty Fruit Bunches ( Ecofuture) or at least the Oxo Biodegradable (OBD) plastic, which decompose naturally within 5 to 10 years (even though it's not good enough) which relieving the impact of empty plastic containers on the environment where as the conventional polyethylene (PE) and polypropylene (PP) plastics will typically take hundreds of years to degrade.

You have some ideas? Share it with me and others.

Since the Earth is all we have, don't you think we should treat it a little better? And it's not difficult, really. We don't have to change our lifestyles completely, only do things a little more consciously, remembering that we have a symbiotic relationship with Earth. What can we do to make a difference?

New Animated Header and Collapsible Menu

Today I have made some major changes to my blog appearance by replacing the old 900x100px animated header with a new 1050x200px header and also applying a collapsible sidebar menu using jquery script.

This new animated header has been done the same way and with the same procedure as the previous one.



This header was designed to give a new image lift to my blog which I will try to fill it with articles related to general information, technology, environment, health and so on.

Another thing that you might notice is that my side bar menus are in collapsible form. When you click on the menu title, the body will expand. I have learned this technique using the jQuery script.

Let me show you how to do it.

First as usual, log in to your blog layout page and edit HTML. Click on the "Download Full Template" to save the existing template to our computer hard disk. In case of anything happened, we can revert it to the original/previous template.

Then we have to predefine our new css code of the menu list, header and body element between <head> to </head> segment. It could be something like this.


.menu_list {
margin: 0px;
padding: 0px;
width: 400px;
}
.menu_head {
padding: 5px 10px;
cursor: pointer;
position: relative;
background-color:#
FF8000;
margin:1px;
}
.menu_body {
padding: 5px 10px 15px;
background-color:#
D8D8D8;
}





Then paste the jquery script below which use the hide, click and slideToggle function to the <body> to </body> segment or inside our sidebar script block.


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
//hide the all of the element with class menu_body
$(".menu_body").hide();
//toggle the component with class menu_body
$(".menu_head").click(function()
{
$(this).next(".menu_body").slideToggle(600);
});
});
</script>

<div class="menu_list">
<div class="menu_head">Header-1 </div>
<div style="display:none;" class="menu_body">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
<div class="menu_head">Header-2</div>
<div style="display:none;" class="menu_body">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
<div class="menu_head">Header-3</div>
<div style="display:none;" class="menu_body">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
</div>

If you would like to use images as the menu titles like I did, you may omit the background color from the predefined css codes and instead of the menu title text, replace it with your image source link address. Which look something like this.


<div class="menu_head"><img src="http://YourImageLinkAddressHere"/></div>



The output should look like this. Click the header to see the action. The smaller the slideToggle value, the faster the action.




Give it a try and good luck.



Followers