<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3253320810711758047</id><updated>2024-11-17T02:24:34.747-08:00</updated><category term="Blog"/><category term="Scripts"/><category term="Widget"/><category term="Amazing"/><category term="CSS"/><category term="Picture"/><category term="Software"/><category term="Video"/><title type='text'>Blogspot Scripts</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-4531060889726123904</id><published>2009-09-20T00:42:00.000-07:00</published><updated>2009-09-20T00:55:41.993-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="CSS"/><category scheme="http://www.blogger.com/atom/ns#" term="Picture"/><category scheme="http://www.blogger.com/atom/ns#" term="Scripts"/><category scheme="http://www.blogger.com/atom/ns#" term="Widget"/><title type='text'>Displaying Images Transparent, With Mouseover Effect</title><content type='html'>How a transparent image above effect is not so difficult, that we need only use CSS Image Opacity property. But before you should also know CSS opacity property is not included in the standard CSS, which this property works well only on some modern web browsers only.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Examples of the mouseover effect to the more dim light (set directly in the picture).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style=&quot;color: rgb(0, 0, 0);&quot; align=&quot;left&quot;&gt;&lt;img src=&quot;http://images.google.com/intl/id_ALL/images/logos/images_logo_lg.gif&quot;  style=&quot;opacity:0.4;filter:alpha(opacity=40)&quot;&lt;br /&gt;onmouseover=&quot;this.style.opacity=1;this.filters.alpha.opacity=100&quot;&lt;br /&gt;onmouseout=&quot;this.style.opacity=0.4;this.filters.alpha.opacity=40&quot; / /&gt;&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0);&quot; align=&quot;left&quot;&gt;&amp;lt;img src=&amp;quot;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;Your Image URL&lt;/span&gt;&amp;quot; style=&amp;quot;opacity:0.4;filter:alpha(opacity=40)&amp;quot;&lt;br /&gt;onmouseover=&amp;quot;this.style.opacity=1;this.filters.alpha.opacity=100&amp;quot;&lt;br /&gt;onmouseout=&amp;quot;this.style.opacity=0.4;this.filters.alpha.opacity=40&amp;quot; /&amp;gt;&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-weight: bold;&quot; align=&quot;left&quot;&gt;Examples of the mouseover effect to dim light (set directly in the picture)&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0);&quot; align=&quot;left&quot;&gt;&lt;img src=&quot;http://images.google.com/intl/id_ALL/images/logos/images_logo_lg.gif&quot; border=&quot;1&quot;  style=&quot;opacity:1;filter:alpha(opacity=100)&quot;&lt;br /&gt;onmouseover=&quot;this.style.opacity=0.4;this.filters.alpha.opacity=40&quot;&lt;br /&gt;onmouseout=&quot;this.style.opacity=1;this.filters.alpha.opacity=100&quot;/ /&gt;&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0);&quot; align=&quot;left&quot;&gt;&amp;lt;img src=&amp;quot;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;Your Image URL&lt;/span&gt;&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;opacity:1;filter:alpha(opacity=100)&amp;quot;&lt;br /&gt;onmouseover=&amp;quot;this.style.opacity=0.4;this.filters.alpha.opacity=40&amp;quot;&lt;br /&gt;onmouseout=&amp;quot;this.style.opacity=1;this.filters.alpha.opacity=100&amp;quot;/&amp;gt;&lt;/p&gt;Maybe a bit hard if each image must be set one by one the value of his property, now that every partner posts directly having an effect automatically, can directly add this CSS code:&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; &gt; .post img{opacity:1;filter:alpha(opacity=1); this.style.opacity=6}&lt;br /&gt;&lt;br /&gt;.post img:hover{opacity:.5;filter:alpha(opacity=100); this.style.opacity=1}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As far as I usually use the property Firefox opacity: x for tranparancy, unlike IE which uses filter: alpha (opacity = x). In Firefox opacity: x value of x can be filled with values between 0.0 -1.0, while the IE filter: alpha (opacity = x) the value of x between 0-100.&lt;br /&gt;&lt;br /&gt;&lt;p style=&quot;color: rgb(0, 0, 0);&quot; align=&quot;left&quot;&gt;&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/4531060889726123904/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/displaying-images-transparent-with.html#comment-form' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/4531060889726123904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/4531060889726123904'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/displaying-images-transparent-with.html' title='Displaying Images Transparent, With Mouseover Effect'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-5239245503026300049</id><published>2009-09-19T21:46:00.000-07:00</published><updated>2009-09-19T22:00:59.565-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Amazing"/><category scheme="http://www.blogger.com/atom/ns#" term="Picture"/><title type='text'>10 Biggest Explosion at the World</title><content type='html'>&lt;p  style=&quot;color: rgb(0, 0, 0); text-align: left; font-family: lucida grande;font-family:arial;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;&quot;&gt;This is a row of one to ten of the largest explosion ever in the world. Read it carefully and well!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); text-align: center; font-family: lucida grande;font-family:arial;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;1. Gamma-ray emission&lt;/span&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img406.imageshack.us/img406/1745/urutan1.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;Gamma rays are the strongest person I know in the universe. Rays emanating from a very remote area, but look, is GRB 090423, to reach &quot;the world&quot; we are at a distance 13 billion light years!! from the earth. The explosion, which only recorded less than 1 second, releasing energy more than 100 times the energy released by the sun during the 10 M&lt;/span&gt;&lt;/p&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;2. Supernova&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img186.imageshack.us/img186/527/urutan2.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); text-align: justify; font-family: lucida grande;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;Supernova is a star that exploded is often &quot;illuminated&quot; the whole galaxy. The brightest supernova ever on record in which history is seen in the constellation Lupus (Latin for wolf) in the spring of 1006. Extraordinary explosion of golden now known as SN 1006 occurred in nearly 7100 light years away, and bright enough to cause the shadows at night, and read at night, and still look up to many months in the daytime&lt;/span&gt;&lt;/p&gt; &lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;3. Comet Shoemaker-explosion Levy9&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;a href=&quot;http://www.suarabuana.com/wp-content/uploads/2009/09/shoemaker-levy-comet.jpg&quot;&gt;&lt;img class=&quot;size-medium wp-image-2175 alignnone&quot; title=&quot;shoemaker-levy-comet&quot; src=&quot;http://www.suarabuana.com/wp-content/uploads/2009/09/shoemaker-levy-comet-300x225.jpg&quot; alt=&quot;shoemaker-levy-comet&quot; width=&quot;210&quot; height=&quot;157&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt; &lt;/p&gt; &lt;p  style=&quot;color: rgb(0, 0, 0); text-align: justify; font-family: lucida grande;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;Comet Shoemaker-Levy9 collided spectacularly with Jupiter in 1994, these giant planets gravitational pull dab comet comet broke up an area of 3km, and they Menghujam at 60 km / 21 seconds to produce a visible impact. Largest collision caused a fire ball up as high as 3000 km above the Jovian clouds and cause black spots with a diameter 12.000km2 (about registration for the earth) and is expected to explode with the power of Giga Tonnes of TNT 6000&lt;/span&gt;&lt;/p&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;4. Cretaceous-Tertiary collision&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img2.imageshack.us/img2/1040/urutan4.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); text-align: justify; font-family: lucida grande;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;Dinosaurs era ended in disaster, nearly 65 million years ago, which killed nearly half of all species on this planet, although the researchers suggest that the planet on the verge of environmental kehacuran before the collision the Cretaceous-Tertiary (meteorite), which is 180 km wide crater in chixulub in Mexico might be the location of the collision.&lt;/span&gt;&lt;/p&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;5. The explosion of Mount Tambora&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center; font-family: lucida grande;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img2.imageshack.us/img2/1688/urutan5.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); text-align: justify; font-family: lucida grande;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;In 1815, Mount Tambora in Indonesia exploded with a force nearly 1000 mega tons of TNT, an explosive volcano terdahsyat recorded in history. The blast threw the 140 billion tonnes of magma, and not only killed 71,000 people on the island of Sumbawa (Near Lombok), but volcanic ash that made causes of global climate anomalies, in the next year (1816), diknal a year without a summer, snow fell in the month of June in Albany NY, rivers of ice can be found in July in Pennsylvania, and hundreds of thousands of people worldwide suffer from hunger&lt;/span&gt;&lt;/p&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); font-family: lucida grande; text-align: center;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;strong&gt;6.Explosion In Podkamennaya Tunguska River&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img186.imageshack.us/img186/483/urutan6.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); font-family: lucida grande; text-align: justify;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;A mysterious explosion Podkamennaya Tunguska river dean in 1908 flattened an area of 2000km2 from the Siberian forests (nearly the width of Tokyo). Researchers think that the explosion disebankan by an asteroid or comet may be a diameter of 20m and weighing 185,000 metric tons (7 times the weight of titanic). The explosion that produced nearly as strong as 4 mega tons of TNT (250 times more powerful than the Hiroshima bomb)&lt;/span&gt;&lt;/p&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;7. Atomic bomb at Trinity Site, Alamogordo&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img27.imageshack.us/img27/7071/urutan7.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); font-family: lucida grande; text-align: justify;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;The first atomic bomb in history, the blow on the Trinity site, near Alamogordo, NM in 1945, nearly detonates premises power 20kilo tons of TNT, scientist J. Robert Oppenheimer later said, when he watched the test, he thought an excerpt from the manuscript Bhagavas Hindu Gita: &quot;I will become Death, destroyer of worlds&quot;, nuclear weapons to end WWII and then caused the fear of nuclear weapons until decades later. Scientists later found that communities in New Mexico may be exposed to nuclear radiation thousands of times the normal limit that can still be tolerated by the body.&lt;/span&gt;&lt;/p&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;8.Nuclear in Chernobly, Ukraine&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img195.imageshack.us/img195/3738/urutan8.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); font-family: lucida grande; text-align: justify;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;In 1986, a nuclear reactor exploded in Ukraine Chernobly, it was the worst nuclear accident in sejaran, the blast threw Rector weighed 2000 tons and 400 times the level of spreading radioaktive than the Hiroshima bomb, contaminate more than 200,000 km2 of Europe, 600,000 people exposed to high doses of radiation , and more than 350,000 people were evacuated from the regional to the first atomic terkontaminasi.Bom in history, the blow on the Trinity site, near Alamogordo, NM in 1945, nearly detonates premises power 20kilo tons of TNT, scientist J. Robert Oppenheimer later said, when he watched the test, he thought an excerpt from the manuscript Bhagavas Hindu Gita: &quot;I will become Death, destroyer of worlds&quot;, nuclear weapons to end WWII and then caused the fear of nuclear weapons until decades later. Scientists later found that communities in New Mexico may be exposed to nuclear radiation thousands of times the normal limit that can still be tolerated by the body.&lt;/span&gt;&lt;/p&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:130%;&quot; &gt;9. Cargo Ship Crash&lt;/span&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;&quot;&gt; in France&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img2.imageshack.us/img2/6901/urutan9.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); font-family: lucida grande; text-align: justify;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;In 1917, a French cargo ship, which contains full of explosives for World War I, accidentally collided with the Belgium fleet in the port of Halifax, Canada. This causes an explosion with impact far greater than peladak ever made by humans earlier, equivalent to 3 kilo tons of TNT. Spreading the white powder up to 6.100m above the city and caused the tsunami with wave height of 18 m equivalent, up to 2 Km radius around the center of the explosion. It was total destruction, and claimed 2000 lives and injured 9000. That tetao become the world&#39;s worst accidents caused by human-made explosives.&lt;/span&gt;&lt;/p&gt;&lt;p face=&quot;arial&quot; style=&quot;color: rgb(0, 0, 0); font-family: lucida grande;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-family: lucida grande;font-size:100%;&quot; &gt;&lt;strong&gt;10. The explosion in the cargo ship SS Grandcamp&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;img src=&quot;http://img195.imageshack.us/img195/5328/urutan10.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;p  style=&quot;color: rgb(0, 0, 0); font-family: lucida grande; text-align: justify;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;A fire in the cargo ship SS Grandcamp was docked in texas city at 2300 tonnes in 1947 triggered amoniu nitrate, a mixture that is used for fertilizer and high explosives. Explosion merontokan 2 aircraft passing nearby and trigger a chain reaction which triggered the explosion of a cargo ship is also carrying another 1000 tons of ammonium nitrate. This disaster killed lebuh than 600 people and injured another 3500, and is generally categorized BANCANA worst industry in U.S. history&lt;/span&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/5239245503026300049/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/10-biggest-explosion-at-world.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/5239245503026300049'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/5239245503026300049'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/10-biggest-explosion-at-world.html' title='10 Biggest Explosion at the World'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-6831790949766979843</id><published>2009-09-19T21:29:00.000-07:00</published><updated>2009-09-20T01:08:47.038-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="CSS"/><category scheme="http://www.blogger.com/atom/ns#" term="Scripts"/><category scheme="http://www.blogger.com/atom/ns#" term="Widget"/><title type='text'>How to Remove Blogger Navbar</title><content type='html'>&lt;center&gt;&lt;img style=&quot;width: 336px; height: 210px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIm4Ux84H27fgmoRK7sYnllq1Kvll4tmyRHFxUo5QbGlPT4q2Pjw1lUEQXOd8R3CxJIgOyJuY2iNxJHIXY6pGtqof_aZE4-9EpK3ZLV_xUypUF4EK9hjinHZ1PGbAihTwPznnukJbjXOre/s1600/blogger-edit-navbar02.jpg&quot; alt=&quot;How to Remove / Hide Blogger Navbar&quot; /&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;Ihsan pal who asked the question in writing through the shoutbox. He asked how to remove the Blogger Navbar, and this time I will try to discuss it. What is Blogger Navbar? blogger navbar is a small frame of his bloggers who are at the top of the blog. This frame serves to log into blogger or it could be a way to look at other blogs or it could be to mark the blogs that violate TOS if bloggers like blogs that contain elements of pornography or racial intolerance to be reported to the blogger.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Are we able to remove Blogger Navbar? if the question like that then her answers are certainly able, but before removing the navbar is a good idea to think-think, my friend and former blogger TOS, please read carefully, because the risk would bear very heavily on the will of the lid blogger pal account or in other words buddies will lose kesayanangannya blog. Pretty scary is not it? did some time ago, word got out that anyone ever asked the parties whether bloggers should remove navbar blogger or not? and he now allows the blogger to remove the navbar, but I do not know whether the news is true or not that clear pal should always read the TOS carefully.&lt;br /&gt;&lt;br /&gt;Still insisted to remove blogger navbar? if it still will I tell, but the risk in their respective responsibilities, I am not responsible if tomorrow something happens with your blog buddies.&lt;br /&gt;&lt;br /&gt;To remove the blogger navbar, add buddies living below code in the CSS style sheet:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;/* hide navbar&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;----------------------------- */&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;#navbar-iframe {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;height:0px;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;visibility:hidden;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;display:none&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Or it could also put the following code just under the code &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;body&amp;gt;&lt;/span&gt; :&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;style type=&#39;text/css&#39;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;#navbar-iframe {display:none;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;/style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Enjoy the blog without navbar !</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/6831790949766979843/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/how-to-remove-blogger-navbar.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/6831790949766979843'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/6831790949766979843'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/how-to-remove-blogger-navbar.html' title='How to Remove Blogger Navbar'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIm4Ux84H27fgmoRK7sYnllq1Kvll4tmyRHFxUo5QbGlPT4q2Pjw1lUEQXOd8R3CxJIgOyJuY2iNxJHIXY6pGtqof_aZE4-9EpK3ZLV_xUypUF4EK9hjinHZ1PGbAihTwPznnukJbjXOre/s72-c/blogger-edit-navbar02.jpg" height="72" width="72"/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-8135658302367380347</id><published>2009-09-18T23:04:00.000-07:00</published><updated>2009-09-18T23:18:39.691-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Amazing"/><category scheme="http://www.blogger.com/atom/ns#" term="Picture"/><title type='text'>Uzbekistan Hell Gate [ Picture ]</title><content type='html'>A natural phenomenon well-metaphor for a reply which certainly everyone wants to avoid it .... This form Secenery in Central Asian countries, Uzbekistan ... Scary but the possibility is of volcanic lava or volcano&#39;s mouth ... just a look ... if we enter into it ... but the explanation of this fact ... this place is in reply Uzbekistan held by local residents as Door to Hell ... border lies with a small airport named Darvaz. This story began about 35 years ago wrote. A geologist had dug this place to look for the original gas. Suddenly during the dig, they have a huge gap be found under the ground. because too large so that all the equipment has been digging into the abyss.&lt;br /&gt;&lt;br /&gt;No anyone who dared to fall into the abyss the abyss caused by the original gas filled the earth. To avoid the natural gas which will contaminate the earth, they had lit a fire in the gulf, and since from it so that now, has 35 years of this hole burning non-stop for a moment though.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVc4tekeuuP-q39rh9xBq96CbMwjbAKOkxbB925zqWY37_Cv0bYpqFVIKwSbOrZ-kX_0_T9Wbm_3c_8vddTfoUQ4vpfXwV-YXwhQq81oGr9IWdn0tTSosV0LhADVXQLmy07XGezgQsLnI/s1600-h/2_1.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5302899938118701410&quot; style=&quot;margin: 0px auto 10px; display: block; width: 400px; height: 267px; text-align: center;&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVc4tekeuuP-q39rh9xBq96CbMwjbAKOkxbB925zqWY37_Cv0bYpqFVIKwSbOrZ-kX_0_T9Wbm_3c_8vddTfoUQ4vpfXwV-YXwhQq81oGr9IWdn0tTSosV0LhADVXQLmy07XGezgQsLnI/s400/2_1.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5EqeWlipcXvZwvdZhv3BC4LgDqXkjnGmPp0dyKtTR0LUtMpPPE7FMgScwtU_ZZcVKamjzfoxWgUt8Y-c0Wo8I38dEZTRASSbH-I6vopVbsoHUZDErO09dB4DkrIZwK3WtuU8Vty5ZCzI/s1600-h/2_1_1.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5302899930685292050&quot; style=&quot;margin: 0px auto 10px; display: block; width: 400px; height: 267px; text-align: center;&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5EqeWlipcXvZwvdZhv3BC4LgDqXkjnGmPp0dyKtTR0LUtMpPPE7FMgScwtU_ZZcVKamjzfoxWgUt8Y-c0Wo8I38dEZTRASSbH-I6vopVbsoHUZDErO09dB4DkrIZwK3WtuU8Vty5ZCzI/s400/2_1_1.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgk2qFsoIl-2A1jN6LwaiLzhnEL09Wew6Mi0qsdm3KZlqpeSWVFKiZJQzv_D_V0BH6eetkVMfLxcHq4wJvcpDWi-SgHQSqoBVvrzGl3828JSDI4iPJQMaraYwbB1FjPGqVEeMoyYGNCMg0/s1600-h/2_1__2_.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5302896989793743218&quot; style=&quot;margin: 0px auto 10px; display: block; width: 400px; height: 267px; text-align: center;&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgk2qFsoIl-2A1jN6LwaiLzhnEL09Wew6Mi0qsdm3KZlqpeSWVFKiZJQzv_D_V0BH6eetkVMfLxcHq4wJvcpDWi-SgHQSqoBVvrzGl3828JSDI4iPJQMaraYwbB1FjPGqVEeMoyYGNCMg0/s400/2_1__2_.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3Ff3K6XlLmEKVgp8rWcZVXSf-xCTXGfqlzB2Fm5XwSSmKMjJ2s79IK52WN6nylONLQaRtIsqefkrhGKlIwB7Wpxn5a9TgYFYqLlovHL0HgSD7_Gj4EhBuheBOl9D0NZ6VDDOq02OrHtU/s1600-h/2_1__3_.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5302896985938827730&quot; style=&quot;margin: 0px auto 10px; display: block; width: 400px; height: 267px; text-align: center;&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3Ff3K6XlLmEKVgp8rWcZVXSf-xCTXGfqlzB2Fm5XwSSmKMjJ2s79IK52WN6nylONLQaRtIsqefkrhGKlIwB7Wpxn5a9TgYFYqLlovHL0HgSD7_Gj4EhBuheBOl9D0NZ6VDDOq02OrHtU/s400/2_1__3_.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT_dndGq8TKN3GaHWsBUYJ-ie26XvQnVAWJPaKX-lrUAFDIGyYcurtwaJq_ej8g3CoWlNE7LzCDZDxkkW8ji2lBQALeM36n0iT4aEHp9g0clEsTosDcdqiYHlhGP2GqpFWj5ZWHKqkoJw/s1600-h/2_1__4_.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5302894517435992754&quot; style=&quot;margin: 0px auto 10px; display: block; width: 400px; height: 267px; text-align: center;&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT_dndGq8TKN3GaHWsBUYJ-ie26XvQnVAWJPaKX-lrUAFDIGyYcurtwaJq_ej8g3CoWlNE7LzCDZDxkkW8ji2lBQALeM36n0iT4aEHp9g0clEsTosDcdqiYHlhGP2GqpFWj5ZWHKqkoJw/s400/2_1__4_.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/8135658302367380347/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/uzbekistan-hell-gate-picture.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/8135658302367380347'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/8135658302367380347'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/uzbekistan-hell-gate-picture.html' title='Uzbekistan Hell Gate [ Picture ]'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVc4tekeuuP-q39rh9xBq96CbMwjbAKOkxbB925zqWY37_Cv0bYpqFVIKwSbOrZ-kX_0_T9Wbm_3c_8vddTfoUQ4vpfXwV-YXwhQq81oGr9IWdn0tTSosV0LhADVXQLmy07XGezgQsLnI/s72-c/2_1.jpg" height="72" width="72"/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-6906820039721880255</id><published>2009-09-18T22:18:00.000-07:00</published><updated>2009-09-18T22:38:21.877-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Amazing"/><category scheme="http://www.blogger.com/atom/ns#" term="Video"/><title type='text'>Flying Fish</title><content type='html'>Ever seen a fish fly? Fish is not just jumping out of the water surface but also capable of flying up to 200 meters distance together even able to fly in formation as far as 400 meters.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img style=&quot;width: 518px; height: 414px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgGp1ZBjg1EPxtzrSLqYbghPuCCoNynir9nEamtdBKiRK4SflQjhDYdlgd1mOwgITJAACaHqubEeCoxiEDgOI-YoJwDDlsthb9xAjR3eY_Wi14ZbaCdVc__JpuRkf1_4GiAXKrYfa9kycr/&quot; alt=&quot;Flying Fish&quot; /&gt;&lt;br /&gt;&lt;br /&gt;Flying fish using aerodynamic body to penetrate the surface of the water at high speed and large fins and a strange functions like wings to keep it floating above the waves.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVN69_XQSmj-jOzJ8zGAm412VO5WmKyMfgxF91OlJvMWw5KiH8MZQaNpUDBD411yvJZ2-yxDet5PXJ9l1qdhLPbXeNJLhM2q3R7zDZiCWsm_8Oh_D1Lj2Qa_1zK9R9_GbW72XTo2gEzAU8/&quot; alt=&quot;Flying Fish&quot; /&gt;&lt;br /&gt;&lt;br /&gt;Flying fish is not actually flying animals, like birds, but it just floated. Flying fish can easily cover the distance up to 200 meters or more and can reach high enough to.&lt;br /&gt;&lt;img src=&quot;file:///C:/DOCUME%7E1/SONYVA%7E1/LOCALS%7E1/Temp/moz-screenshot-9.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;&lt;img src=&quot;file:///C:/DOCUME%7E1/SONYVA%7E1/LOCALS%7E1/Temp/moz-screenshot-8.png&quot; alt=&quot;&quot; /&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQjvqVVYnbiTHE_Lcrb_ejwgAuVCpys0uUKID9uEmdnPV6Y98tEkw6iSedV1k33a77HYyHWycxWEPeqONUv1Ess4eJlG4XAtvqXmyHMgZedtnvdrRjr2Gf1HR5tvkwJNXEE8EanlCz6PPZ/&quot; alt=&quot;Flying Fish&quot; /&gt;&lt;br /&gt;&lt;br /&gt;The first reason the flying fish that have 40 or more species that are flying under the action of running away or escape from predators such as marine fish mackerel, tuna, swordfish and marlin. However these fish are also wary of the threat of bird beak above it, in addition to these fish are also being hunted by fishermen in Japan and Barbados for the meal.&lt;br /&gt;&lt;br /&gt;&lt;img style=&quot;width: 447px; height: 282px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjl0ZPNhGqiBwsy-BbuY0UqkDjNaHqHCtfTJ7xOFlrFscN6fBFjgn5Ft2aO83uqQDC2WIng9A4SKMaaC2dWFUY5Bc1g9KDcX6P65dCpXwhjwVXNl71sJJ7zeM4qbsQh64t3cyzqkibeR610/&quot; alt=&quot;Flying Fish&quot; /&gt;&lt;br /&gt;&lt;br /&gt;The mechanism of how these fish can fly, too simple. Initially they will be accelerated in the water until it reaches the speed of 70 km / h assisted by flapping their tails. Once they jumped in the water, fins, fins will develop and use wind to gain altitude. Sometimes they slapped his tail to keep the high jump and change direction.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvDiCiaCVSeCBIQsCUWJmAz-TSOlsqTYr42pYc0MnOXV6edlpb55JU4WJPP9WfhnsRmimAXtxVi-cngmoja4v2qIBxCwwlvqlf05SYB-Eldgx42WNoJw0oNiMCoLb-K8RrOjmWIAE5auTx/&quot; /&gt;&lt;br /&gt;&lt;br /&gt;In some species of flying fish wings on the chest also assisted in the rear wing, so that the four-winged species are more powerful in the air beratraksi. Although not much flying ability, can do flying fish fly together, with a unique formation to travel up to 400 meters.&lt;br /&gt;&lt;br /&gt;&lt;object width=&quot;300&quot; height=&quot;250&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/OmWRCdUw17E&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/OmWRCdUw17E&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/6906820039721880255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/flying-fish.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/6906820039721880255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/6906820039721880255'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/flying-fish.html' title='Flying Fish'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgGp1ZBjg1EPxtzrSLqYbghPuCCoNynir9nEamtdBKiRK4SflQjhDYdlgd1mOwgITJAACaHqubEeCoxiEDgOI-YoJwDDlsthb9xAjR3eY_Wi14ZbaCdVc__JpuRkf1_4GiAXKrYfa9kycr/s72-c" height="72" width="72"/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-8742500118496341982</id><published>2009-09-18T21:57:00.000-07:00</published><updated>2009-09-18T22:01:37.888-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Software"/><title type='text'>Dont Panic Software</title><content type='html'>Do not Panic, Use a software Do not Panic - Remembering when i still work in a company dijakarta, if the job is not too stacked, or indeed even more complicated, like i surreptitiously operate the computer time to open the Internet or play games as well. But sometimes the boss appeared so suddenly caught a bit of panic because, although the boss was not angry still, something like that makes little sense keki. You also often have something like that?&lt;br /&gt;&lt;br /&gt;Now it seemed that such events do not happen again because there is software Do not Panic. With the software do not panic you can close some programs at once or run a program with just one click. What should you do first is set the application anywhere you want on the close if the state of &quot;emergency&quot; and at the same time can open other applications to run.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia16gIEbf2H0eEHuafv96jPwsCUHnDY98YZuffUqkCluCr9N_a8K2xt0t4ovUWCs584bWKYWrLx5DqX3q0dyvdSXSBPcwtEAYDP8r1PEwbmjNNmnyQTWVgIyzvF2qHVDrgjNmfbH7fF9A/?imgmax=800&quot; alt=&quot;Dont Panic Software&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;This software can be downloaded for free at &lt;a href=&quot;http://sourceforge.net/projects/dont-panic&quot; target=&quot;_blank&quot;&gt;http://sourceforge.net/projects/dont-panic. &lt;/a&gt;&lt;br /&gt;So now when the situation is &quot;emergency&quot; do not panic, just use the software Do not Panic!&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/8742500118496341982/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/dont-panic-software.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/8742500118496341982'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/8742500118496341982'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/dont-panic-software.html' title='Dont Panic Software'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia16gIEbf2H0eEHuafv96jPwsCUHnDY98YZuffUqkCluCr9N_a8K2xt0t4ovUWCs584bWKYWrLx5DqX3q0dyvdSXSBPcwtEAYDP8r1PEwbmjNNmnyQTWVgIyzvF2qHVDrgjNmfbH7fF9A/s72-c?imgmax=800" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-2549959734389546135</id><published>2009-09-18T21:26:00.000-07:00</published><updated>2009-09-18T22:06:44.322-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Scripts"/><category scheme="http://www.blogger.com/atom/ns#" term="Widget"/><title type='text'>Popup Box</title><content type='html'>By using this script, you can display a close button and the box you can fill the announcement, notice, info, and more. To be sure popup box can be moved and driven in over there. Suitable for business-themed blogs, news, and entertainment.&lt;br /&gt;&lt;br /&gt;Use this custom DHTML &quot;widget&quot; to uniquely present new or notable pieces of     information to your visitors. The interface is cross browser compatible, and can be     dragged/ hidden freely by the user. Now that&#39;s something new in itself!&lt;br /&gt;&lt;br /&gt;Instruction : (Hold     your mouse down over the title bar of the box to drag it).&lt;br /&gt;&lt;br /&gt;The Demo &lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex11/abox.htm&quot; target=&quot;_blank&quot;&gt;click here !.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;First, add the code below under &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;/******************************************&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* Popup Box- By Jim Silver @ jimsilver47@yahoo.com&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* Visit http://www.dynamicdrive.com/ for full source code&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* This notice must stay intact for use&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* Publish for Blogger by http://blogspot-scripts.blogspot.com&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;******************************************/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var ns4=document.layers&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var ie4=document.all&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var ns6=document.getElementById&amp;amp;&amp;amp;!document.all&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;//drag drop function for NS 4////&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;/////////////////////////////////&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var dragswitch=0&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var nsx&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var nsy&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var nstemp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function drag_dropns(name){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;if (!ns4)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;return&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp=eval(name)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp.onmousedown=gons&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp.onmousemove=dragns&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp.onmouseup=stopns&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function gons(e){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp.captureEvents(Event.MOUSEMOVE)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;nsx=e.x&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;nsy=e.y&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function dragns(e){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;if (dragswitch==1){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp.moveBy(e.x-nsx,e.y-nsy)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;return false&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function stopns(){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;temp.releaseEvents(Event.MOUSEMOVE)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;//drag drop function for ie4+ and NS6////&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;/////////////////////////////////&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function drag_drop(e){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;if (ie4&amp;amp;&amp;amp;dragapproved){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;crossobj.style.left=tempx+event.clientX-offsetx&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;crossobj.style.top=tempy+event.clientY-offsety&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;return false&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;else if (ns6&amp;amp;&amp;amp;dragapproved){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;crossobj.style.left=tempx+e.clientX-offsetx+&quot;px&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;crossobj.style.top=tempy+e.clientY-offsety+&quot;px&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;return false&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function initializedrag(e){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;crossobj=ns6? document.getElementById(&quot;showimage&quot;) : document.all.showimage&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var firedobj=ns6? e.target : event.srcElement&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var topelement=ns6? &quot;html&quot; : document.compatMode &amp;amp;&amp;amp; document.compatMode!=&quot;BackCompat&quot;? &quot;documentElement&quot; : &quot;body&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;while (firedobj.tagName!=topelement.toUpperCase() &amp;amp;&amp;amp; firedobj.id!=&quot;dragbar&quot;){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;firedobj=ns6? firedobj.parentNode : firedobj.parentElement&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;if (firedobj.id==&quot;dragbar&quot;){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;offsetx=ie4? event.clientX : e.clientX&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;offsety=ie4? event.clientY : e.clientY&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;tempx=parseInt(crossobj.style.left)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;tempy=parseInt(crossobj.style.top)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;dragapproved=true&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;document.onmousemove=drag_drop&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;document.onmouseup=new Function(&quot;dragapproved=false&quot;)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;////drag drop functions end here//////&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function hidebox(){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;crossobj=ns6? document.getElementById(&quot;showimage&quot;) : document.all.showimage&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;if (ie4||ns6)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;crossobj.style.visibility=&quot;hidden&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;else if (ns4)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;document.showimage.visibility=&quot;hide&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Step 2: Insert the below HTML code to the BOTTOM of your page,&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt; right above the &amp;lt;/body&amp;gt; tag itself:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;div id=&quot;showimage&quot; style=&quot;position:absolute;width:250px;left:250px;top:250px&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;table border=&quot;0&quot; width=&quot;250&quot; bgcolor=&quot;#000080&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;  &amp;lt;tr&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;    &amp;lt;td width=&quot;100%&quot;&amp;gt;&amp;lt;table border=&quot;0&quot; width=&quot;100%&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;    height=&quot;36px&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;      &amp;lt;tr&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;        &amp;lt;td id=&quot;dragbar&quot; style=&quot;cursor:hand; cursor:pointer&quot; width=&quot;100%&quot; onMousedown=&quot;initializedrag(event)&quot;&amp;gt;&amp;lt;ilayer width=&quot;100%&quot; onSelectStart=&quot;return false&quot;&amp;gt;&amp;lt;layer width=&quot;100%&quot; onMouseover=&quot;dragswitch=1;if (ns4) drag_dropns(showimage)&quot; onMouseout=&quot;dragswitch=0&quot;&amp;gt;&amp;lt;font face=&quot;Verdana&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;        color=&quot;#FFFFFF&quot;&amp;gt;&amp;lt;strong&amp;gt;&amp;lt;small&amp;gt;Announcement Box&amp;lt;/small&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/layer&amp;gt;&amp;lt;/ilayer&amp;gt;&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;        &amp;lt;td style=&quot;cursor:hand&quot;&amp;gt;&amp;lt;a href=&quot;#&quot; onClick=&quot;hidebox();return false&quot;&amp;gt;&amp;lt;img src=&quot;close.gif&quot; width=&quot;16px&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;        height=&quot;14px&quot; border=0&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;      &amp;lt;/tr&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;      &amp;lt;tr&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;        &amp;lt;td width=&quot;100%&quot; bgcolor=&quot;#FFFFFF&quot; style=&quot;padding:4px&quot; colspan=&quot;2&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;!-- PUT YOUR CONTENT BETWEEN HERE --&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;Testing 1 2 3&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;!-- END YOUR CONTENT HERE --&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;      &amp;lt;/tr&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;    &amp;lt;/table&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;    &amp;lt;/td&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;  &amp;lt;/tr&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;/table&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;Change &quot;close.gif&quot; above with your images address. Or you can use my images for free.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwpU5-8yNe9MuLdEHhHu0FhVaOO5bXkW1KkzT5y_9N1mM8OU5yzwAxneI67NsYR883vLpaFeYBYbTJ4-KWPmS1BBNKhj2ZBlS5FqQ-a4WrS2XTSqyWGwOvQ9Ak4IznZqxpYaIgdUkfVh6F/s1600-h/close.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 16px; height: 16px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwpU5-8yNe9MuLdEHhHu0FhVaOO5bXkW1KkzT5y_9N1mM8OU5yzwAxneI67NsYR883vLpaFeYBYbTJ4-KWPmS1BBNKhj2ZBlS5FqQ-a4WrS2XTSqyWGwOvQ9Ak4IznZqxpYaIgdUkfVh6F/s320/close.gif&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5383033792102848978&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwpU5-8yNe9MuLdEHhHu0FhVaOO5bXkW1KkzT5y_9N1mM8OU5yzwAxneI67NsYR883vLpaFeYBYbTJ4-KWPmS1BBNKhj2ZBlS5FqQ-a4WrS2XTSqyWGwOvQ9Ak4IznZqxpYaIgdUkfVh6F/s320/close.gif&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;p&gt;&lt;strong&gt;Configuring the script&lt;/strong&gt;&lt;/p&gt;     &lt;p&gt;All modifications to the script are done in the code of     Step 2 only.&lt;/p&gt;     &lt;p&gt;1) To customize the displayed content, change the part     where the HTML comments are located.&lt;/p&gt;     &lt;p&gt;2) To configure the initial location of the box on the     page, change the &quot;left&quot; and &quot;top&quot; attributes of the &lt;/p&gt;&lt;div&gt; tag.&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/2549959734389546135/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/popup-box.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/2549959734389546135'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/2549959734389546135'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/popup-box.html' title='Popup Box'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwpU5-8yNe9MuLdEHhHu0FhVaOO5bXkW1KkzT5y_9N1mM8OU5yzwAxneI67NsYR883vLpaFeYBYbTJ4-KWPmS1BBNKhj2ZBlS5FqQ-a4WrS2XTSqyWGwOvQ9Ak4IznZqxpYaIgdUkfVh6F/s72-c/close.gif" height="72" width="72"/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253320810711758047.post-5942396200291771468</id><published>2009-09-18T21:03:00.000-07:00</published><updated>2009-09-18T21:46:07.654-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="CSS"/><category scheme="http://www.blogger.com/atom/ns#" term="Scripts"/><category scheme="http://www.blogger.com/atom/ns#" term="Widget"/><title type='text'>Dock Content</title><content type='html'>This script is a script that will display a dock box that appears on the top right corner that will bring the information, text, images, and others who will appear on without stopping.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Dock Content &lt;/span&gt;is useful if you want to know the information to someone. Or you want to put your ad code in the Dock this Content. That will multiply your ad clicks. This is a free blog tips, blog trick, blog hack, and blog scripts.&lt;br /&gt;&lt;br /&gt;As you can imagine, this is a       great way to seamlessly yet effectively       give select content on your page the spotlight, by temporarily (or permanently)       maintaining its visibility on the user&#39;s       screen. Examples of usage are:       &lt;ul&gt;&lt;li&gt;           &lt;p align=&quot;left&quot;&gt;Docking a navigational           menu permanently.         &lt;/p&gt;&lt;/li&gt;&lt;li&gt;           &lt;p align=&quot;left&quot;&gt;Docking an image ad for 5           seconds.         &lt;/p&gt;&lt;/li&gt;&lt;li&gt;           &lt;p align=&quot;left&quot;&gt;Docking an important announcement           for 10 seconds.       &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;The Demo, you can &lt;blink&gt;&lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex17/dockcontent.htm&quot; target=&quot;_blank&quot;&gt;click here.&lt;/a&gt;&lt;/blink&gt;&lt;br /&gt;&lt;br /&gt;First, add the below css (Casading Style Sheet) to your blog :&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;.dockclass{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;position:relative;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then copy and paste the code below under &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;amp;lt;script type=&amp;amp;quot;text/javascript&amp;amp;quot;&amp;amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;/***********************************************&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* Dock Content script- Created by and &amp;amp;Acirc;&amp;amp;copy; Dynamicdrive.com&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* This notice must stay intact for use&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* Visit http://www.dynamicdrive.com/ for full script&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* Publish for Blogger by http://blogspot-scripts.blogspot.com&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;***********************************************/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var offsetfromedge=0      //offset from window edge when content is &amp;amp;quot;docked&amp;amp;quot;. Change if desired.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var dockarray=new Array() //array to cache dockit instances&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var dkclear=new Array()   //array to cache corresponding clearinterval pointers&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function dockit(el, duration){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;this.source=document.all? document.all[el] : document.getElementById(el);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;this.source.height=this.source.offsetHeight;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;this.docheight=truebody().clientHeight;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;this.duration=duration;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;this.pagetop=0;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;this.elementoffset=this.getOffsetY();&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;dockarray[dockarray.length]=this;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var pointer=eval(dockarray.length-1);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var dynexpress=&#39;dkclear[&#39;+pointer+&#39;]=setInterval(&amp;amp;quot;dockornot(dockarray[&#39;+pointer+&#39;])&amp;amp;quot;,100);&#39;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;dynexpress=(this.duration&amp;amp;gt;0)? dynexpress+&#39;setTimeout(&amp;amp;quot;clearInterval(dkclear[&#39;+pointer+&#39;]); dockarray[&#39;+pointer+&#39;].source.style.top=0&amp;amp;quot;, duration*1000)&#39; : dynexpress;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;eval(dynexpress);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;dockit.prototype.getOffsetY=function(){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var totaloffset=parseInt(this.source.offsetTop);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var parentEl=this.source.offsetParent;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;while (parentEl!=null){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;totaloffset+=parentEl.offsetTop;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;parentEl=parentEl.offsetParent;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;return totaloffset;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function dockornot(obj){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;obj.pagetop=truebody().scrollTop;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;if (obj.pagetop&amp;amp;gt;obj.elementoffset) //detect upper offset&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;obj.source.style.top=obj.pagetop-obj.elementoffset+offsetfromedge+&amp;amp;quot;px&amp;amp;quot;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;else if (obj.pagetop+obj.docheight&amp;amp;lt;obj.elementoffset+parseInt(obj.source.height)) //lower offset&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;obj.source.style.top=obj.pagetop+obj.docheight-obj.source.height-obj.elementoffset-offsetfromedge+&amp;amp;quot;px&amp;amp;quot;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;else&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;obj.source.style.top=0;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;function truebody(){&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;return (document.compatMode &amp;amp;amp;&amp;amp;amp; document.compatMode!=&amp;amp;quot;BackCompat&amp;amp;quot;)? document.documentElement : document.body&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p align=&quot;left&quot;&gt;&lt;b&gt;Step 2:&lt;/b&gt;       Having done the above, designate a particular content on your page to be       docked by adding inside its tag the code in red:&lt;/p&gt;&lt;p align=&quot;left&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;div id=&quot;dockcontent0&quot; class=&quot;dockclass&quot;&amp;gt;This DIV content is docked&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;Docked image: &amp;lt;img src=&quot;test.gif&quot; id=&quot;dockcontent1&quot; class=&quot;dockclass&quot; /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;p align=&quot;left&quot;&gt;where &quot;dockcontent0&quot;       is an arbitrary but unique name, and should differ       for each additional content you dock (as shown in the image that follows).&lt;/p&gt;       &lt;p align=&quot;left&quot;&gt;&lt;b&gt;Step 3:&lt;/b&gt;       Finally, you now need to jumpstart the docking engine. To do so, add the       below script to the &lt;b&gt; END&lt;/b&gt; of your page, right above the       tag:&lt;/p&gt;&lt;p align=&quot;left&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var dock0=new dockit(&quot;dockcontent0&quot;, 0);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;var dock1=new dockit(&quot;dockcontent1&quot;, 10);&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;left&quot;&gt;Don&#39;t forget ! Before you use the scripts (not css) you must &lt;a href=&quot;http://centricle.com/tools/html-entities/&quot; target=&quot;_blank&quot;&gt;encode it !&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;left&quot;&gt;&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogspot-scripts.blogspot.com/feeds/5942396200291771468/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/dock-content.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/5942396200291771468'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3253320810711758047/posts/default/5942396200291771468'/><link rel='alternate' type='text/html' href='http://blogspot-scripts.blogspot.com/2009/09/dock-content.html' title='Dock Content'/><author><name>blog scripts</name><uri>http://www.blogger.com/profile/14536924543230058124</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj98P9sp4teT-cNRcQ3i78OywkHNm0S-_D3Lhu7TRgGosgUZKPLpCEnAu8cFa4BbQiF6JDpoc4s1swMa3lLZWeLCKTZ1O22s8CtrhMQkGCKidCwgYFxQEij8TRO2EbHrJU/s220/IMG0061A.jpg'/></author><thr:total>5</thr:total></entry></feed>