<?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: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-1463792172397228119</id><updated>2012-03-17T00:33:46.711-07:00</updated><title type='text'>All about IT</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>89</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-4228437322839078001</id><published>2012-01-25T18:10:00.000-08:00</published><updated>2012-01-25T18:10:14.134-08:00</updated><title type='text'>Mengunci Folder Tanpa Menggunakan Perisian</title><content type='html'>&lt;span style="background-color: #444444; color: orange;"&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;kali ni aku nak tulis benda yang senang sangat nak buat..&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Tips kali ni aku nak bagi korang cara yang mudah untuk mengunci folder (private) tanpa menggunakan apa-apa perisian..caranya ialah&amp;nbsp;&lt;/span&gt;&lt;b style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;copy dan paste kod di bawah ke dalam notepad..&lt;br /&gt;save sebagai batch file, dengan extension .bat&lt;br /&gt;(gantikan *.txt dengan *.bat - dekat tanda * gantikan dengan nama yang korang pilih)&lt;/b&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;sebagai contoh&amp;nbsp;&lt;/span&gt;&lt;b style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;'Fail Peribadi Aku.bat'&lt;/b&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Kemudian korang dah save, korang akan nampak fail tersebut telah di-save dalam bentuk batch file..korang double click pada fail tu, dan satu folder yang dinamakan 'Locker' akan tercipta dengan sendiri (yang sebenarnya semuanya dah dibuat dalam command pada kod tu)..&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Kat bawah ni adalah kod yang perlu korang copy n paste:&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;b style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK&lt;br /&gt;if NOT EXIST Locker goto MDLOCKER&lt;br /&gt;:CONFIRM&lt;br /&gt;echo Are you sure u want to Lock the folder(Y/N)&lt;br /&gt;set/p "cho=&amp;gt;"&lt;br /&gt;if %cho%==Y goto LOCK&lt;br /&gt;if %cho%==y goto LOCK&lt;br /&gt;if %cho%==n goto END&lt;br /&gt;if %cho%==N goto END&lt;br /&gt;echo Invalid choice.&lt;br /&gt;goto CONFIRM&lt;br /&gt;:LOCK&lt;br /&gt;ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"&lt;br /&gt;attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"&lt;br /&gt;echo Folder locked&lt;br /&gt;goto End&lt;br /&gt;:UNLOCK&lt;br /&gt;echo Enter password to Unlock folder&lt;br /&gt;set/p "pass=&amp;gt;"&lt;br /&gt;if NOT %pass%==type your password here&amp;nbsp;goto FAIL&lt;br /&gt;attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"&lt;br /&gt;ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker&lt;br /&gt;echo Folder Unlocked successfully&lt;br /&gt;goto End&lt;br /&gt;:FAIL&lt;br /&gt;echo Invalid password&lt;br /&gt;goto end&lt;br /&gt;:MDLOCKER&lt;br /&gt;md Locker&lt;br /&gt;echo Locker created successfully&lt;br /&gt;goto End&lt;br /&gt;:End&lt;/b&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Tulisan yang berwarna&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;merah&lt;/span&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;, korang gantikan dengan password pilihan sendiri. jadi, bila dah siap, bawak semua fail yang korang nak sorok kat dalam folder 'Locker' tu..&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;cara nak kunci senang aje..double click pada fail bat tersebut, satu tetingkap arahan akan keluar..&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;kalau nak lock, taipkan 'Y' atau 'y' dan tekan enter..siap! folder tu dah hilang!&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;nak unlock pulak, double click jugak pada fail bat tadi, satu tetingkap arahan untuk memasukkan password (yang korang dah taip @ gantikan pada tulisan merah tu la) akan keluar...taipkan password, kemudian tekan enter..folder 'Locker' akan muncul kembali...&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Selamat mencuba!&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;P/S: FAIL BAT adalah mudah untuk di-hack dengan hanya menggunakan perisian Notepad++, hacker dengan mudah akan berjaya melihat kod yang telah digunakan dan dapat juga melihat password korang..jadi, untuk lebih selamat, convertkan fail bat tu kepada fail exe..sila gunakan perisian di bawah untuk melakukan proses converting:&lt;/span&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;br style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;" /&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Bat To Exe Converter&lt;/span&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;gt;&amp;gt;&lt;/span&gt;&lt;span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;http://www.mediafire.com/?8jfgrbt8j6ky2xw&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-4228437322839078001?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/4228437322839078001/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2012/01/mengunci-folder-tanpa-menggunakan.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4228437322839078001'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4228437322839078001'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2012/01/mengunci-folder-tanpa-menggunakan.html' title='Mengunci Folder Tanpa Menggunakan Perisian'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-7276492788446454422</id><published>2011-12-21T18:36:00.001-08:00</published><updated>2011-12-21T18:38:23.228-08:00</updated><title type='text'>All Mac Software you need!! full</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-J92YgreAC3k/TvKX0p63rUI/AAAAAAAAAF4/BJ4U_X7VyLE/s1600/mac-software.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-J92YgreAC3k/TvKX0p63rUI/AAAAAAAAAF4/BJ4U_X7VyLE/s1600/mac-software.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="color: red;"&gt;Download Link!&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?phfx4qrypc5d5" style="background-color: white; color: #005599; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?phfx4qrypc5d5&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-7276492788446454422?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/7276492788446454422/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/12/all-mac-software-you-need-full.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7276492788446454422'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7276492788446454422'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/12/all-mac-software-you-need-full.html' title='All Mac Software you need!! full'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-J92YgreAC3k/TvKX0p63rUI/AAAAAAAAAF4/BJ4U_X7VyLE/s72-c/mac-software.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-7148786904057775038</id><published>2011-11-22T01:08:00.000-08:00</published><updated>2011-11-22T01:08:39.660-08:00</updated><title type='text'>HTC WIDGET for windows vista and 7</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;HTC Home adalah satu projek sumber terbuka yang membolehkan anda mempunyai widget HTC pada komputer. Widget yang dibuat sememangnya hampir sama dengan widget yang anda dapati pada telefon pintar HTC Sense. Malah perkara yang menariknya, ianya datang sekali dengan animasi cuaca yang hebat seperti yang anda lihat pada telefon android.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Projek ini merupakan sumber yang terbuka dimana semua orang boleh menyumbang untuk membuatkan widget tersebut lebih baik. Jika anda menyukai HTC widget dan mahu mencubanya pada komputer anda, anda haruslah memasangkannya.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.cybernetic88.com/blog/wp-content/uploads/2011/10/Untitled-28.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Widget ini boleh dijalankan pada Windows Vista atau Windows 7 dan menyokong 32bit dan juga 64bit.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Untuk memuat turun anda boleh klik di&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.htchome.org/jegUS" style="text-decoration: none;" target="_blank"&gt;SINI&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-7148786904057775038?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/7148786904057775038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/htc-widget-for-windows-vista-and-7.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7148786904057775038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7148786904057775038'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/htc-widget-for-windows-vista-and-7.html' title='HTC WIDGET for windows vista and 7'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-514671449815342335</id><published>2011-11-15T18:17:00.000-08:00</published><updated>2011-11-15T18:20:27.406-08:00</updated><title type='text'>SKY OPERA= FREE INTERNET MOBILE(MAXIS)</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://i1131.photobucket.com/albums/m543/SKYOPERA/SKYOPERA.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;(Dulu Opera mini)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;KEPADA SAPA2 YANG NAK MENGUNAKAN INTERNET FREE DI MOBILE MASING2&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;BOLEHLAH MENCUBA SOFWARE TERBARU NI....MOBILE YANG BOLEH INSTALL JAR BOLEH MENGGUNAKAN SOFWARE NI.....PASTIKAN CREDIT MAXIS DARI RM 2 HINGGA RM 3 SAHAJA SEMASA INSTALL SKY OPERA INI&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CARA2 NAK INSTALL IALAH MENGUNAKAN CONNECTION 3G WAP ORIGINAL YANG BOLEH DIAMBIL DARI TETAPAN *100#&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;tekan 7-internet dan tetapan&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;tekan 3-prepaid broadband&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;tekan seterusnye-01 sampai jumpe switch broadband&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;pilih hotlink.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SKY OPERA IALAH GABUNGAN OPERA MINI DAN SETTING PRIVATE FREE MAXIS&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;TERKINI...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SOFWARE YANG TAK AKAN DIJUMPA DI MANA2 KERANA HASIL KERJA TERBAIK&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SUPER ANDROID&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SKY OPERA V4.3=&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: red; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;DOWNLOAD LINK!&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: orange; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt; - &amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; font-family: 'Times New Roman'; font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;a href="http://www.mediafire.com/?7yvoyam2fycz6u2"&gt;http://www.mediafire.com/?7yvoyam2fycz6u2&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;Download software ni, extract n transfer skyopera.rar dlm memory.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;bkk fon..cr software ni dlm application&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;pastu install.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;p/s: Hanya untuk hp yg bleh run java application. contoh nokai lame, sony erricson. hp yg gune OS android xleh pakai..termasuk iphone.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-514671449815342335?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/514671449815342335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/sky-opera-free-internet-mobilemaxis.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/514671449815342335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/514671449815342335'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/sky-opera-free-internet-mobilemaxis.html' title='SKY OPERA= FREE INTERNET MOBILE(MAXIS)'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-770358509533375910</id><published>2011-11-14T17:34:00.000-08:00</published><updated>2011-11-14T17:34:13.536-08:00</updated><title type='text'>MS Excel Dictionary</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Ni ader benda lg aku nak kongsi... file ni byk membantu aku bila aku nak guna kan ms excel dgn tahap advance.... dalam file ni ada contoh cara2 nak guna kan formula excel... dia mcm help excel yg biasa... tapi guna file ni lebih mudah dan cepat sikit nak pandai... kalu guna help excel yg di sedia kan oleh microsoft tu kusut sikit kepala...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://4.bp.blogspot.com/-hgkjSLjXms8/Taf_al4Yi3I/AAAAAAAAABE/CoW0uZ6ZmUk/s1600/excel_logo.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Cara2 nak guna kan senang je:-&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;1&amp;gt; masa kau org buka file ni ms excel akan keluar security warning...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;apa kau org perlu buat enable kan je kau org punyer macro dgn klik&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Enable Content... jangan takut benda ni xkan rosak kan apa2 pun..&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;2&amp;gt; Jgn Rename file ni ke nama lain... nati function dia xjadi...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;file ni leh run kat semua version Ms Office&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;Download link!&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?7x7dr7l840tkfdr"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;http://www.mediafire.com/?7x7dr7l840tkfdr&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-770358509533375910?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/770358509533375910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/ms-excel-dictionary.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/770358509533375910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/770358509533375910'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/ms-excel-dictionary.html' title='MS Excel Dictionary'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-hgkjSLjXms8/Taf_al4Yi3I/AAAAAAAAABE/CoW0uZ6ZmUk/s72-c/excel_logo.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-3033863354610539077</id><published>2011-11-14T17:18:00.000-08:00</published><updated>2011-11-14T17:18:02.317-08:00</updated><title type='text'>The Need for Speed ALL COLLECTION</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/16315069489670066112.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?rsnnkda7c4qnu9w" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 1 DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/33750599609976812565.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?lga6um2s2u0825e" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 2 SE DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/75725646152652926762.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?2bftbruf1g1r2" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 4 HIGH STAKES DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/44800975589919413734.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?xxfu6mb3n92vz" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 5 PORSCHE 2000 DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/74273702781453571512.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?05nwtt572q8am" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 6 HOT PURSUIT 2 DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/87561883617578813278.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?gyluotb5ctrik" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 7 UNDERGROUND DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/89374333780434879979.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?shck4c47f8kv5" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 8 UNDERGROUND 2 DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/89083293636196689786.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?vystvhvqoou74" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 9 MOST WANTED DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/50085673231742837693.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?kxjdnshgh0jmx" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 10 CARBON DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/23517001676376068558.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?gs84iwwfow3xg" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 11 PROSTREET DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/26263390346600291464.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?7qc2vgbymdgfn" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 12 UNDERCOVER DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/55093481954080953591.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?0cip4apkat4oc" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 13 SHIFT DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="border-color: initial; border-style: initial;"&gt;&lt;img src="http://www.shotpix.com/images/43366565334486259533.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.mediafire.com/?az57l9epzmft0" style="color: #005599; text-decoration: none;" target="_blank"&gt;.:NEED FOR SPEED 14 HOT PURSUIT DOWNLOAD:.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;ALL UPDATES ENJOYZ ALLZ&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;PASSWORD:www.gamehousevn.com&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-3033863354610539077?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/3033863354610539077/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/need-for-speed-all-collection.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/3033863354610539077'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/3033863354610539077'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/need-for-speed-all-collection.html' title='The Need for Speed ALL COLLECTION'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-397688085883032009</id><published>2011-11-13T23:37:00.000-08:00</published><updated>2011-11-14T17:26:15.362-08:00</updated><title type='text'>Fruit Ninja HD v1.6.1 for PC</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://lulzimg.com/i22/89433b.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://lulzimg.com/i22/421b6d.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Swipe your finger across the screen to deliciously slash and splatter fruit like a true ninja warrior. Be careful of bombs – they are explosive to touch and will put a swift end to your juicy adventure! Fruit Ninja features Classic, Zen and the amazing new Arcade mode, along with online multiplayer for Game Center-enabled devices! It also has awesome global leaderboards and achievements to unlock. Your success will also please the wise ninja Sensei, who will accompany your journey with wise words and fun fruit facts. Fruit Ninja is the messiest and most satisfying fruit game ever!&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;DOWNLOAD LINK!!&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;a href="http://www.mediafire.com/?p49zne2cqntt3d4"&gt;http://www.mediafire.com/?p49zne2cqntt3d4&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Kalo ada problem cam nieh, nieh solution dier:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-LQYKMnjVAbQ/Tg8yeRYCeII/AAAAAAAAAx8/6yJYyo40xuo/s320/fruit+ninja+hd.JPG" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;b&gt;MSVCP100.DLL missing.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Download dan install/reinstall .dll file ni&lt;br /&gt;&lt;a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;amp;id=5555" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;amp;id=5555&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;-----------------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/-LQYKMnjVAbQ/Tg8yeRYCeII/AAAAAAAAAx8/6yJYyo40xuo/s320/fruit+ninja+hd.JPG" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;b&gt;d3dx9_42.dll missing&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Korang kena update direct X....download then install direct X.&lt;br /&gt;&lt;a href="http://www.filehippo.com/download_directx/" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.filehippo.com/download_directx/&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-397688085883032009?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/397688085883032009/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/fruit-ninja-hd-v161-for-pc.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/397688085883032009'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/397688085883032009'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/fruit-ninja-hd-v161-for-pc.html' title='Fruit Ninja HD v1.6.1 for PC'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-LQYKMnjVAbQ/Tg8yeRYCeII/AAAAAAAAAx8/6yJYyo40xuo/s72-c/fruit+ninja+hd.JPG' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-7728257082816051888</id><published>2011-11-13T17:38:00.000-08:00</published><updated>2011-11-13T17:38:03.369-08:00</updated><title type='text'>PDF to office converter full version</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://programs-free.com/wp-content/uploads/2010/12/apdf-office-to-pdf-v-1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://german.softpicks.net/mediumshots/office-Convert-Pdf-to-PowerPoint-Free.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://blogandoffice.com.br/wp-content/uploads/2008/08/Office_PDF1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;DOWNLOAD LINK!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?lsn4q5zww645y8n" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?lsn4q5zww645y8n&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-7728257082816051888?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/7728257082816051888/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/pdf-to-office-converter-full-version.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7728257082816051888'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7728257082816051888'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/pdf-to-office-converter-full-version.html' title='PDF to office converter full version'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-3907834474445165998</id><published>2011-11-13T17:32:00.000-08:00</published><updated>2011-11-13T17:32:14.762-08:00</updated><title type='text'>Androids Skinpack for Windows 7</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img855.imageshack.us/img855/1435/capturesc.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img845.imageshack.us/img845/5375/capture2wg.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;DOWNLOAD LINK!&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Androids Skinpack x86&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?xsd7gg1fhzyd5y1" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?xsd7gg1fhzyd5y1&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Androids Skinpack x64&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?8lpdk6seesoj64j" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?8lpdk6seesoj64j&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-3907834474445165998?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/3907834474445165998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/androids-skinpack-for-windows-7.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/3907834474445165998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/3907834474445165998'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/androids-skinpack-for-windows-7.html' title='Androids Skinpack for Windows 7'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-384607510645398749</id><published>2011-11-11T00:31:00.000-08:00</published><updated>2011-11-11T00:31:31.519-08:00</updated><title type='text'>Counter Strike Extreme V6</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img864.imageshack.us/img864/9506/gamemenuscreens.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img815.imageshack.us/img815/3104/loadingscreeng.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img580.imageshack.us/img580/6796/shotgun.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img43.imageshack.us/img43/2487/30590366.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;New Updates Counter Strike Extreme V6:&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;There's 19 different characters&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;There's 20 Unique Rifles (Primary Waepon)&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Dual Kriss di Machine Gun (Primary Weapon)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Download link!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Media Fire&lt;br /&gt;&lt;a href="http://adf.ly/1b1e2" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://adf.ly/1b1e2&lt;/a&gt;---&amp;gt;part 1&lt;br /&gt;&lt;a href="http://adf.ly/1b1j5" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://adf.ly/1b1j5&lt;/a&gt;---&amp;gt;part 2&lt;br /&gt;&lt;a href="http://adf.ly/1b1jp" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://adf.ly/1b1jp&lt;/a&gt;---&amp;gt;part 3&lt;br /&gt;&lt;a href="http://adf.ly/1b1lD" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://adf.ly/1b1lD&lt;/a&gt;--&amp;gt;part 4&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span style="color: red;"&gt;Game Trailer&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://youtu.be/P9UxXz4_Xo0" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://youtu.be/P9UxXz4_Xo0&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-384607510645398749?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/384607510645398749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/counter-strike-extreme-v6.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/384607510645398749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/384607510645398749'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/counter-strike-extreme-v6.html' title='Counter Strike Extreme V6'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-6202145987894030189</id><published>2011-11-09T17:49:00.000-08:00</published><updated>2011-11-09T17:49:43.097-08:00</updated><title type='text'>HDD Regenerator 2011 |Full [[Mediafire]]</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://2.bp.blogspot.com/-DzerazjhtXk/TbWt-hKgbBI/AAAAAAAAOVM/l16JYn3kNCg/s400/abc07vaviolinlovemusic2.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://4.bp.blogspot.com/-b9VFcDIgUbc/Thp5RMK3cVI/AAAAAAAAAV4/A6VbqxpfDrM/s1600/hdd.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;HDD Regenerator is a unique software program for regeneration of hard disk drives. The program eliminates physical bad sectors* on a hard disk drive surface. It does not hide bad sectors, it really restores them!&lt;br /&gt;&lt;br /&gt;Main benefits of HDD Regenerator :&lt;br /&gt;Hard disk drive is an integral part of every computer. It stores all your information. One of the most prevalent defects of hard drives is bad sectors on the disk surface. Bad sectors are a part of the disk surface which contains not readable, but frequently necessary information. As a result of bad sectors you may have difficulties to read and copy data from your disk, your operating system becomes unstable and finally your computer may unable to boot altogether.&lt;br /&gt;&lt;br /&gt;When a hard drive is damaged with bad sectors, the disk not only becomes unfit for use, but also you risk losing information stored on it. The HDD Regenerator can repair damaged hard disks without affecting or changing existing data. As a result, previously unreadable and inaccessible information is restored.&lt;br /&gt;&lt;br /&gt;How it works :&lt;br /&gt;HDD Regenerator regenerates bad sectors by magnetic reversal. This technology is hardware independent, it supports many types of hard drives and repairs damage that even low-level disk formatting cannot repair. Because of the way the repair is made, the existing information on the disk drive will not be affected!&lt;br /&gt;&lt;br /&gt;Minimum system requirements :&lt;br /&gt;&lt;br /&gt;The product can be installed on Windows XP / Vista / 7 and it is intended for:&lt;br /&gt;1. Starting the regenerating process directly under Windows**&lt;br /&gt;2. Creating a bootable regenerating flash or CD/DVD to start&lt;br /&gt;the regenerating process under DOS&lt;br /&gt;&lt;br /&gt;If you cannot boot your computer to Windows (no operating system is installed on your computer or the operating system is damaged), install HDD Regenerator on any computer with Windows XP/Vista/7 operating system and create a bootable regenerating flash or bootable regenerating CD/DVD, then boot your computer from this flash/CD created to start the regenerating process.&lt;br /&gt;&lt;br /&gt;Supported file systems :&lt;br /&gt;The product works exclusively at physical level. It ignores file system and can be used with FAT, NTFS or any other file system, and also with unformatted or unpartitioned disks. During regeneration, the disk structure will not be changed and the existing data will not be affected.&lt;br /&gt;&lt;br /&gt;As the product does not change the logical structure of a hard disk drive, the file system may contain marked earlier bad sector labels, even if the hard disk is already regenerated and not damaged by bad sectors. If you want to remove these marks, repartition the hard disk drive&lt;br /&gt;&lt;br /&gt;Installing and uninstalling :&lt;br /&gt;In order to install HDD Regenerator, execute the installation file. The Installation Wizard will take you through the installation steps. When the installation has completed, press Finish button to close the Wizard.&lt;br /&gt;&lt;br /&gt;If you need to remove HDD Regenerator from your computer, use the Programs and Features applet (Add/Remove Programs) from Windows Control Panel.&lt;br /&gt;&lt;br /&gt;How to start HDD Regenerator :&lt;br /&gt;In order to start the product, double-click the HDD Regenerator icon on your desktop or select the HDD Regenerator icon from the Start menu. If you use the unregistered version, you can regenerate only one recoverable bad sector. The main purpose of the unregistered demo version is displaying a report that contains information about the possibility to regenerate your disk by means of the registered full version. The registered version carefully scans the hard disk drive surface and regenerates all found recoverable bad sectors.&lt;br /&gt;&lt;br /&gt;To begin the regenerating process start the HDD Regenerator Console Application. You can start the Console Application directly from Windows** (the "Regeneration | Start Process under Windows" menu) or create a bootable regenerating flash (the "Regeneration | Create Bootable Flash" menu) or create a bootable regenerating CD/DVD (the "Regeneration | Create Bootable CD/DVD" menu). After the flash or CD is created, boot your computer from this flash/CD and the Console Application will start automatically under DOS.&lt;br /&gt;&lt;br /&gt;Working with HDD Regenerator Console Application :&lt;br /&gt;To start the Console Application, use "Regeneration | Start Process under Windows" menu, or boot from the Bootable Regenerating Flash (the "Regeneration | Create Bootable Flash" menu) or boot from the Bootable Regenerating CD/DVD (the"Regeneration | Create Bootable CD/DVD" menu)&lt;br /&gt;&lt;br /&gt;After you start the Console Application :&lt;br /&gt;1. Choose the drive to regenerate&lt;br /&gt;2. Choose mode ("Scan and Repair" or "Scan Only"&lt;img src="http://www.syok.org/portal/images/smiley/wink.gif" /&gt;&lt;br /&gt;3. Enter the "Starting Sector" parameter. Leave this parameter equal to 0 if you want to scan the entire disk. Enter the sector value if you want to scan the disk not from the beginning. For example, you don't want to scan the first 5 GB of your hard drive to save time, because you know that this part of the surface does not contain bad sectors. In this case enter the offset equal to 5000 with 'm' following or 10240000 without 'm' following (number of sectors 5000*1024*1024/512=10240000)&lt;br /&gt;4. Wait while the scanning is completed.&lt;br /&gt;&lt;br /&gt;NOTE: If you have started the Console Application under Windows and the Console does not respond to keyboard input, make sure that it has focus (click on the console window or use ALT-TAB keys combination to switch between windows)&lt;br /&gt;&lt;br /&gt;*HDD Regenerator can repair physical bad sectors caused by magnetic errors on a hard drive surface. If the hard drive has a physical breakage (damaged heads, circuit board, etc.), then it will not be repaired by the product.&lt;br /&gt;&lt;br /&gt;**Unfortunately, the repair mode directly under Windows will not be effective, if you have only one hard drive on your system. The reason is that the repair mode requires exclusive access to a hard drive (except Windows XP). For obvious reasons, the exclusive access cannot be obtained to the hard drive on which Windows OS is installed. This is related to repair mode only. Scan mode does not require exclusive access to a drive. To obtain exclusive access to any hard drive on any system, please use the Bootable Regenerating Flash or CD/DVD option.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Compatible : Windows XP, Vista &amp;amp; 7&lt;/div&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;Download :&amp;nbsp;&lt;a href="http://www.mediafire.com/?kj0057y0q78" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?kj0057y0q78&lt;/a&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Password mediafire :&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;andystonecold&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;HDD Regenerator 2011 | 6.72 Mb&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-6202145987894030189?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/6202145987894030189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/hdd-regenerator-2011-full-mediafire.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6202145987894030189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6202145987894030189'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/hdd-regenerator-2011-full-mediafire.html' title='HDD Regenerator 2011 |Full [[Mediafire]]'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-DzerazjhtXk/TbWt-hKgbBI/AAAAAAAAOVM/l16JYn3kNCg/s72-c/abc07vaviolinlovemusic2.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-6380420363927443136</id><published>2011-11-09T17:45:00.000-08:00</published><updated>2011-11-09T17:45:41.972-08:00</updated><title type='text'>COD Modern Warfare 3 mediafire</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://4.bp.blogspot.com/-YLw4-jE5qic/TdV5CD6wmhI/AAAAAAAAANc/HPMsieiTrHQ/s320/PC.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Features:&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Continuing with the tales of bravery and confrontation in battle, this eighth entry in the Call of Duty franchise (in addition to an action-adventure spin-off from Sledgehammer Games) is due out in 2011.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Promo&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;object height="344" width="425"&gt;&lt;embed src="http://www.youtube.com/v/zuzaxlddWbk" type="application/x-shockwave-flash" width="425" height="344"&gt;&lt;/object&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Minimum System Requirements&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;* OS: Windows XP, Vista or Windows 7&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;* CPU: Intel Core 2 Duo E6600 or AMD Phenom X3 8750 processor or better&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;* RAM: 2 GB&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;* HDD: 16 GB free disk space&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;* Graphics: 256 MB card with shader model 3&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;* Sound Card: DirectX 9 Compatible&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;* DirectX: Version 9.0c&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Link:&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;http://www.mediafire.com/?hquy6f7dh9c6i&lt;br /&gt;&lt;br /&gt;http://www.mediafire.com/?wxxywwhhof61f&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Password: awesome&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;b&gt;Reloded version&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Crack&lt;/b&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;http://multiupload.com/YPYUZG018J&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Multiupload&lt;/b&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;http://multiupload.com/72DRXLNKDC&lt;br /&gt;http://multiupload.com/N7VPLVD8TA&lt;br /&gt;http://multiupload.com/HJEAX08HVV&lt;br /&gt;http://multiupload.com/XU65YU6UKM&lt;br /&gt;http://multiupload.com/HNJF8KZ2NE&lt;br /&gt;http://multiupload.com/T4CF3VCIBX&lt;br /&gt;&lt;br /&gt;http://multiupload.com/8CBK3ME7YO&lt;br /&gt;http://multiupload.com/B451L6MLGA&lt;br /&gt;http://multiupload.com/4R7RWAVFRV&lt;br /&gt;http://multiupload.com/TSV8QIRJW0&lt;br /&gt;http://multiupload.com/9YYOS3HLUV&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Mediafire&lt;/b&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Pass: mediafiregames.net&lt;br /&gt;&lt;br /&gt;http://www.mediafire.com/?wse2vq5gj14fq&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;b&gt;Reloded repack 5GB&lt;/b&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;http://www.mediafire.com/?1zna268k159tk&lt;br /&gt;&lt;br /&gt;Pass: mediafiregames.net&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-6380420363927443136?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/6380420363927443136/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/cod-modern-warfare-3-mediafire.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6380420363927443136'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6380420363927443136'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/cod-modern-warfare-3-mediafire.html' title='COD Modern Warfare 3 mediafire'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-YLw4-jE5qic/TdV5CD6wmhI/AAAAAAAAANc/HPMsieiTrHQ/s72-c/PC.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-2655704140946939531</id><published>2011-11-07T19:10:00.000-08:00</published><updated>2011-11-07T19:11:06.293-08:00</updated><title type='text'>Firefox 8 Now Available For Windows, Mac And Linux – Download Now!</title><content type='html'>&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Final version of Firefox 8 has made it to the Mozilla ftp servers, and brings amongst other things, speed and performance enhancements. It is largely regarded that this release resembles the end-user version – set to be released to public on November 8th.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;img alt="" class="aligncenter size-full wp-image-31996" height="331" src="http://www.redmondpie.com/wp-content/uploads/2011/08/FireFox-61.jpg" style="display: block; float: none; margin-left: auto; margin-right: auto;" width="344" /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Firefox is considered to be one of the internet’s "good guys", promoting open-source software and generally improving the browsing experience as a whole. In its early days, it was widely lauded as the cream of the crop, fending off the relatively weak challenge of Microsoft’s&lt;em&gt;Internet Explorer&lt;/em&gt;.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Times have changed now, though. Google’s&amp;nbsp;&lt;em&gt;Chrome&amp;nbsp;&lt;/em&gt;browser is ever ever-increasing in popularity, and the comparatively minuscule Mozilla Foundation is in real danger of being crowded out by the big guns.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;The updates have been coming in thick and fast of late, and some have argued that releasing larger version numbers in relatively short spaces of time has only confused consumers. This latest&amp;nbsp;&lt;a href="http://www.redmondpie.com/download-firefox-8-beta-now-with-enhanced-tab-management-twitter-search-and-more/" target="_blank"&gt;version 8&lt;/a&gt;&amp;nbsp;comes a mere six weeks after the release of&amp;nbsp;&lt;a href="http://www.redmondpie.com/download-firefox-7-for-windows-mac-linux-direct-links/" target="_blank"&gt;version 7&lt;/a&gt;, which succeeded&lt;a href="http://www.redmondpie.com/download-mozilla-firefox-6-final-for-windows-and-mac-now/" target="_blank"&gt;version 6&lt;/a&gt;&amp;nbsp;buy little over a month itself. With most software updates, a leap between whole numbers suggests a major revamp, although that hasn’t really been the case with Firefox, which has sped up its release schedule in order to maintain its place amongst the best.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Firefox has prided itself and built its success around being a lag-free, smooth browsing experience, and version 8 continues that tradition. There are a whole host of new handy features for you to mull over, as well as the&amp;nbsp;&lt;em&gt;to be expected&lt;/em&gt;&amp;nbsp;array of bug fixes. You can check out the full change log below:&lt;/span&gt;&lt;/div&gt;&lt;ul style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Add-ons installed by third party programs are now disabled by default&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Added a one-time add-on selection dialog to manage previously installed add-ons&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Added Twitter to the search bar&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Added a preference to load tabs on demand, improving start-up time when windows are restored&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Improved tab animations when moving, reordering, or detaching tabs&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Improved performance and memory handling&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Added CORS support for cross-domain textures in WebGL&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Added support for HTML5 context menus&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Added support for insertAdjacentHTML&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Improved CSS hyphen support for many languages&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Improved WebSocket support&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;Fixed several stability issues&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;img alt="firefox-8.0-about" border="0" height="334" src="http://www.redmondpie.com/wp-content/uploads/2011/11/firefox-8.0-about1.png" style="background-image: none; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: block; float: none; margin-bottom: 0px; margin-left: auto; margin-right: auto; margin-top: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="firefox-8.0-about" width="590" /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;You can download Firefox 8.0 right now from the Mozilla Servers, just select the release specific to your operating system:&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;a href="ftp://ftp.mozilla.org/pub/firefox/releases/8.0/" target="_blank"&gt;Download&lt;/a&gt;&amp;nbsp;Firefox 8.0 for Windows, Mac, Linux [Mozilla FTP Server]&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-2655704140946939531?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/2655704140946939531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/firefox-8-now-available-for-windows-mac.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2655704140946939531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2655704140946939531'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/firefox-8-now-available-for-windows-mac.html' title='Firefox 8 Now Available For Windows, Mac And Linux – Download Now!'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-1780640689878274782</id><published>2011-11-01T18:30:00.000-07:00</published><updated>2011-11-01T18:30:48.468-07:00</updated><title type='text'>ImTOO.Video. Editor.1.0.34.1231</title><content type='html'>&lt;img src="http://viprasys.org/xfs/image/direct/rWREVHzK0F/soft.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;DOWNLOAD LINK&lt;/span&gt;: &amp;nbsp;&lt;a href="http://www.mediafire.com/?mydxzwyynmg"&gt;http://www.mediafire.com/?mydxzwyynmg&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-1780640689878274782?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/1780640689878274782/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/11/imtoovideo-editor10341231.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1780640689878274782'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1780640689878274782'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/11/imtoovideo-editor10341231.html' title='ImTOO.Video. Editor.1.0.34.1231'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-139283218277471844</id><published>2011-10-27T01:21:00.000-07:00</published><updated>2011-10-27T01:21:43.607-07:00</updated><title type='text'>BATTLEFIELD 3 RELOADED!!(FAST DIRECT SINGLE LINK)</title><content type='html'>&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://lostpic.net/images/b86e56637861cd384cda64168107311e.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;&lt;center&gt;Minimum system requirements:&lt;br /&gt;• OS: Windows Vista (Service Pack 2) 32-bit&lt;br /&gt;• Processor: Dual 2 GHz (Core 2 Duo 2.4 GHz or Athlon X2 2.7 GHz)&lt;br /&gt;• Memory: 2 GB&lt;br /&gt;• Hard disk: 20 GB&lt;br /&gt;• Video (AMD): compatible with DirectX 10.1 with 512 MB r03;r03&lt;img src="http://www.syok.org/portal/images/smiley/bull.gif" /&gt;f RAM (ATI Radeon Rules 3000, 4000, 5000 or 6000, performance ATI Radeon 3870 or higher •)&lt;br /&gt;• Video Card (NVIDIA): compatible with DirectX 10.0 with 512MB RAM (NVIDIA GeForce Rules 8, 9, 200, 300, 400 or 500 performance NVIDIA GeForce 8800 GT or higher)&lt;br /&gt;• Sound Card: DirectX compatible&lt;br /&gt;• Keyboard and mouse&lt;br /&gt;• DVD-drive&lt;/center&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://image.gamespotcdn.net/gamespot/images/2011/286/621026_20111014_640screen003.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://image.gamespotcdn.net/gamespot/images/2011/286/621026_20111014_640screen004.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://image.gamespotcdn.net/gamespot/images/2011/278/reviews/960869_20111007_640screen003.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.filehippo.com/download_daemon_tools/" style="color: #005599; text-decoration: none;" target="_blank"&gt;Download ni untuk Run ISO file&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: red; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;SINGLE LINK(DIRECT LINK)&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;lt;--MultiUpload&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://adf.ly/3Pd15" style="color: #005599; text-decoration: none;" target="_blank"&gt;SINGLE LINK DOWNLOAD&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;2 LINK(DIRECT LINK)&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;lt;--MultiUpload&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://adf.ly/3Pd25" style="color: #005599; text-decoration: none;" target="_blank"&gt;PART 1&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://adf.ly/3Pd3F" style="color: #005599; text-decoration: none;" target="_blank"&gt;PART 2&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;&lt;br /&gt;Another LINK(2 DIRECT LINK)&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;lt;--Another Direct Link&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://adf.ly/3PdIb" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 1&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://adf.ly/3PdKr" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 2&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-139283218277471844?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/139283218277471844/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/10/battlefield-3-reloadedfast-direct.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/139283218277471844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/139283218277471844'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/10/battlefield-3-reloadedfast-direct.html' title='BATTLEFIELD 3 RELOADED!!(FAST DIRECT SINGLE LINK)'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-871019472089094675</id><published>2011-10-21T00:00:00.000-07:00</published><updated>2011-10-21T00:00:10.616-07:00</updated><title type='text'>Machinarium for Windows full</title><content type='html'>&amp;nbsp;&lt;img src="http://amanita-design.net/img/wallpapers/machinarium/machinarium-wallpaper-cover-1280x800.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;Download Link:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;a href="http://www.mediafire.com/?oymmnynnjfa" style="color: #b21b1b; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?oymmnynnjfa&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;a href="http://www.mediafire.com/?4mnxllyg2ym" style="color: #b21b1b; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?4mnxllyg2ym&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;a href="http://www.mediafire.com/?truwi5zmyzy" style="color: #b21b1b; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?truwi5zmyzy&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #370605; font-family: arial, helvetica, verdana; font-size: 15px; font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-871019472089094675?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/871019472089094675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/10/machinarium-for-windows-full.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/871019472089094675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/871019472089094675'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/10/machinarium-for-windows-full.html' title='Machinarium for Windows full'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-1190419533846227579</id><published>2011-10-08T00:16:00.000-07:00</published><updated>2011-10-08T00:16:51.894-07:00</updated><title type='text'>Photoshop Top Secret 5 IN 1 DVD | 4.7 GB MEDIAFIRE LINKS</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img177.imageshack.us/img177/5089/74108635fs6.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Dvd 1&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img523.imageshack.us/img523/8455/14597062ah7.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Dvd 2&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img523.imageshack.us/img523/481/77826935jl0.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Dvd 3&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img179.imageshack.us/img179/5396/12166450vj7.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Dvd 4&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img177.imageshack.us/img177/907/48746162rs3.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Dvd 5 : Bonus Disc..&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Photoshop Top Secret is an Extreme Training Course that teaches you, step by step, how to create cutting-edge graphics and special effects with Adobe Photoshop. This student-friendly home study course includes five DVD-ROMs with over 18 gigabytes of video tutorials and project files. You can look, learn, practice, and master these advanced techniques wherever you may be, without the need for expensive classes or tutors.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?8mj2vj1549v3x63" style="color: #005599; text-decoration: none;" target="_blank"&gt;&lt;b&gt;Part 1&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/nmnnnl2kdlt/photoshop.top.secret.5in1dvd_www.dl4all.com.part02.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 2&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;b&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/hwmotntagjt/photoshop.top.secret.5in1dvd_www.dl4all.com.part03.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 3&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/mtwmddvm2g4/photoshop.top.secret.5in1dvd_www.dl4all.com.part04.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 4&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/mtwmddvm2g4/photoshop.top.secret.5in1dvd_www.dl4all.com.part04.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 5&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/v2jmk0mknhd/photoshop.top.secret.5in1dvd_www.dl4all.com.part06.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 6&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/v2jmk0mknhd/photoshop.top.secret.5in1dvd_www.dl4all.com.part06.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 7&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?1zuc0p7ge26bsyf" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 8&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/?1zuc0p7ge26bsyf" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 9&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/dizaynoj3zn/photoshop.top.secret.5in1dvd_www.dl4all.com.part10.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 10&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/dizaynoj3zn/photoshop.top.secret.5in1dvd_www.dl4all.com.part10.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 11&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?f7g1bz28obbbjf1" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 12&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/?f7g1bz28obbbjf1" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 13&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/kwydoxd1zuz/photoshop.top.secret.5in1dvd_www.dl4all.com.part14.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 14&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/kwydoxd1zuz/photoshop.top.secret.5in1dvd_www.dl4all.com.part14.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 15&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?hx1e5l21kfj025r" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 16&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/?hx1e5l21kfj025r" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 17&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/qxyrjxzm4z2/photoshop.top.secret.5in1dvd_www.dl4all.com.part18.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 18&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/qxyrjxzm4z2/photoshop.top.secret.5in1dvd_www.dl4all.com.part18.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 19&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?0phc3v3yx3d7obw" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 20&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/?0phc3v3yx3d7obw" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 21&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/j1g2zuzzjjl/photoshop.top.secret.5in1dvd_www.dl4all.com.part22.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 22&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/j1g2zuzzjjl/photoshop.top.secret.5in1dvd_www.dl4all.com.part22.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 23&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?jhs8m8mb79fsp85" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 24&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/?jhs8m8mb79fsp85" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 25&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/kwna2ji3jmf/photoshop.top.secret.5in1dvd_www.dl4all.com.part26.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 26&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/kwna2ji3jmf/photoshop.top.secret.5in1dvd_www.dl4all.com.part26.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 27&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/ywn3fby2z0f/photoshop.top.secret.5in1dvd_www.dl4all.com.part28.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 28&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/ywn3fby2z0f/photoshop.top.secret.5in1dvd_www.dl4all.com.part28.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 29&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/oogdz2zmiyy/photoshop.top.secret.5in1dvd_www.dl4all.com.part30.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 30&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/oogdz2zmiyy/photoshop.top.secret.5in1dvd_www.dl4all.com.part30.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 31&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/eqdommzmm0a/photoshop.top.secret.5in1dvd_www.dl4all.com.part32.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 32&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/eqdommzmm0a/photoshop.top.secret.5in1dvd_www.dl4all.com.part32.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 33&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/wjqyogozjiw/photoshop.top.secret.5in1dvd_www.dl4all.com.part34.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 34&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/wjqyogozjiw/photoshop.top.secret.5in1dvd_www.dl4all.com.part34.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 35&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/5ldndjkznjl/photoshop.top.secret.5in1dvd_www.dl4all.com.part36.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 36&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/5ldndjkznjl/photoshop.top.secret.5in1dvd_www.dl4all.com.part36.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 37&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/file/tnzdojtmujy/photoshop.top.secret.5in1dvd_www.dl4all.com.part38.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 38&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/file/tnzdojtmujy/photoshop.top.secret.5in1dvd_www.dl4all.com.part38.rar" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 39&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?bz3obvvcrctbv2r" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 40&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/?bz3obvvcrctbv2r" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 41&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/download.php?1kjzmyjzjml" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 42&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/download.php?1kjzmyjzjml" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 43&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/download.php?fk0mnyjmiwb" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 44&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/download.php?fk0mnyjmiwb" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 45&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="color: #005599; text-align: center; text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/download.php?yjtdmynzny2" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 46&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span" style="color: #555555; font-weight: normal;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #005599;"&gt;&lt;a href="http://www.mediafire.com/download.php?yjtdmynzny2" style="color: #005599; text-decoration: none;" target="_blank"&gt;Part 47&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/b&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;&lt;br /&gt;Password Tekan Sebelah :--&amp;gt;&amp;nbsp;&lt;a href="https://lh4.googleusercontent.com/-s57F3XWl5VM/ToK22vaHFDI/AAAAAAAAAKM/Z76XCRSVgG4/s640/password%252520la.jpg" style="color: #005599; text-decoration: none;" target="_blank"&gt;Klik Sini&lt;img src="http://www.syok.org/portal/images/smiley/cool2.gif" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/b&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;&lt;br /&gt;Tools utk mount ISO :--&amp;gt;&amp;nbsp;&lt;a href="http://www.filehippo.com/download/file/bb6356f11fbcbc000862cde25d0feb2bb685b1c4c511cf61db370a61c60630cb/" style="color: #005599; text-decoration: none;" target="_blank"&gt;&lt;span style="color: red;"&gt;DAEMON TOOLS LITE&lt;/span&gt;&lt;/a&gt;&amp;nbsp;@&amp;nbsp;&lt;a href="http://www.magiciso.com/tutorials/miso-magicdisc-history.htm" style="color: #005599; text-decoration: none;" target="_blank"&gt;&lt;span style="color: red;"&gt;MAGIC DISC&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-1190419533846227579?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/1190419533846227579/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/10/photoshop-top-secret-5-in-1-dvd-47-gb.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1190419533846227579'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1190419533846227579'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/10/photoshop-top-secret-5-in-1-dvd-47-gb.html' title='Photoshop Top Secret 5 IN 1 DVD | 4.7 GB MEDIAFIRE LINKS'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-724187790517150442</id><published>2011-10-05T01:41:00.000-07:00</published><updated>2011-10-05T01:41:47.784-07:00</updated><title type='text'>Pro Evolution Soccer 2012</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.gol.ge/posters/games/1159.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;br /&gt;&lt;a href="http://games.gol.ge/Pro_Evolution_Soccer_2012/PES_2012.iso" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://games.gol.ge/Pro_Evolution_Soccer_2012/PES_2012.iso&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.gol.ge/posters/games/1161.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;a href="http://games.gol.ge/FIFA_12/FIFA_12.iso" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://games.gol.ge/FIFA_12/FIFA_12.iso&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: red; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-724187790517150442?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/724187790517150442/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/10/pro-evolution-soccer-2012.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/724187790517150442'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/724187790517150442'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/10/pro-evolution-soccer-2012.html' title='Pro Evolution Soccer 2012'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-444282453411547869</id><published>2011-10-02T03:28:00.000-07:00</published><updated>2011-10-02T03:28:21.344-07:00</updated><title type='text'>Plant vs Zombie 2 full</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-jXSgIYUL_1w/Tog8XcZe43I/AAAAAAAAAFw/yrG1jFUFeHc/s1600/28371_PvZ001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://3.bp.blogspot.com/-jXSgIYUL_1w/Tog8XcZe43I/AAAAAAAAAFw/yrG1jFUFeHc/s320/28371_PvZ001.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;DOWNLOAD LINK :&amp;nbsp;&lt;a href="http://www.mediafire.com/?ikqaplmgbhqfrk4"&gt;http://www.mediafire.com/?ikqaplmgbhqfrk4&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-444282453411547869?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/444282453411547869/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/10/plant-vs-zombie-2-full.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/444282453411547869'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/444282453411547869'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/10/plant-vs-zombie-2-full.html' title='Plant vs Zombie 2 full'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-jXSgIYUL_1w/Tog8XcZe43I/AAAAAAAAAFw/yrG1jFUFeHc/s72-c/28371_PvZ001.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-1540775228985147330</id><published>2011-08-25T23:08:00.000-07:00</published><updated>2011-08-25T23:08:58.541-07:00</updated><title type='text'>How to hack windows password</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Ini adalah salah satu cara paling mudah untuk skip atau bypass Password login admin mana-mana komputer.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;cth:&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://fc03.deviantart.net/fs70/i/2010/163/b/5/Win_7_Login_Screen_for_Vista_by_Vishal_Gupta.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Mari kita mulakan! Anda hanya perlu beberapa beberapa barangan untuk melakukan ini.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;1. 1 pendrive dan&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;2. perisian KONUSB&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Sekarang ikut beberapa langkah:&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;1. Muat turun perisian KONUSB bebas daripada virus di sini&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?n6jxmh2l63j1ihl" style="text-decoration: none;" target="_blank"&gt;http://adf.ly/2LMkf&lt;/a&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;[Size: 547kb]&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;2.Plugkan pendrive ke komputer anda dan klik dua kali ke atas KONBOOTINSTALL.exe [cmd akan muncul] masukkan huruf drive USB &amp;amp; tekan enter!&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://1.bp.blogspot.com/-Zh2DOwVXvV0/TbXfbIcWjcI/AAAAAAAAANI/lBYRdKeLJHA/s1600/execaptured.JPG" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://1.bp.blogspot.com/-B_Cvjhj77SQ/TbXfy13JkTI/AAAAAAAAANM/p9RTlwyITsU/s1600/Konusb.JPG" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Sekarang pendrive anda bersedia untuk hack atau bypass password login apa-apa windows admin.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;3.Masukkan pen drive ke dalam Laptop PC / mana-mana pendrive mahu hack, dan boot melalui USB (menggunakan pendrive).&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Seterusnya tekan OK untuk segala-galanya ... jika ia meminta password, biarkan kosong dan tekan OK!&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Note: perisian KONUSB ini tidak akan mengubah Password PC / Laptop. Ia hanya memintas sekatan kata laluan. Jika anda mengeluarkan pendrive, dan boot secara biasa login akan keluar dan passwordnya tidak akan berubah.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Ia berfungsi di semua sistem operasi termasuk windows XP, Vista, Windows 7 dan sebagainya. 100% Berfungsi.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Kredit kepada: http://topone2u.blogspot.com/2011/04/how-to-hack-windows-xp-win-7-or-vista-s.html&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-1540775228985147330?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/1540775228985147330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/08/how-to-hack-windows-password.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1540775228985147330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1540775228985147330'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/08/how-to-hack-windows-password.html' title='How to hack windows password'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-Zh2DOwVXvV0/TbXfbIcWjcI/AAAAAAAAANI/lBYRdKeLJHA/s72-c/execaptured.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-2457455637439455600</id><published>2011-08-18T00:04:00.000-07:00</published><updated>2011-08-18T00:04:30.087-07:00</updated><title type='text'>iGetter Mac OS X</title><content type='html'>&lt;br /&gt;&lt;table border="0" cellpadding="0" cellspacing="0" class="tbl-border" style="background-color: #e1e1e1; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl1" height="185" style="background-color: white; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;img src="http://www.iclarified.com/images/news/6429/23087/23087.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;iGetter is a powerful, full featured download manager and accelerator.&lt;br /&gt;&lt;br /&gt;iGetter can greatly improve the speed of your downloads using segmented downloading.&lt;br /&gt;&lt;br /&gt;In addition it allows auto resume on broken downloads, queue filtering by various criteria, site explorer, history list, scheduling downloads for low traffic periods, auto redial on broken connection, auto hang-up and shut down on completion, and much more.&lt;br /&gt;&lt;br /&gt;WHAT'S NEW&lt;br /&gt;Version 2.8:&lt;br /&gt;&lt;br /&gt;* Optimized for Safari 4 on Mac OS X 10.6 Snow Leopard.&lt;br /&gt;* Added support for 64-bit browsers in iGetter Browser Plug-In.&lt;br /&gt;* Reworked integration method with the Safari browser on Mac OS X 10.6.&lt;br /&gt;* Added support for Camino 2.x on Mac OS X 10.6.&lt;br /&gt;* Added support for Firefox 3.x cookie file format.&lt;br /&gt;* Improved processing algorithm of the iGetter download queue, which leads to better download bandwidth utilization, without any interruptions for waiting downloads.&lt;br /&gt;* Improved "Site Manager" connection limitation logic to allow new segments only when there are free slots for them.&lt;br /&gt;* Improved support for "Referrer" field in iGetter Browser Plug-In.&lt;br /&gt;* Added support for "Referrer" and "Cookies" in "Process Web Page" / "Download All" functions.&lt;br /&gt;* Added support for the "7z" file extension in the iGetter browser integration.&lt;br /&gt;* Improved iGetter Schedule function to keep the system awake and prevent idle sleep, when a scheduled event is forthcoming.&lt;br /&gt;* Improved "Item Settings" and "New URL" to use the default browser's cookie.&lt;br /&gt;* Fixed the background color used for "Status" column in the main window in Mac OS X 10.6.&lt;br /&gt;* Fixed an incompatibility with Mac OS X 10.6, that caused a crash in some internal iGetter components.&lt;br /&gt;* Fixed the background color glitch with the metallic theme when sheet windows are opened in Mac OS X 10.6.&lt;br /&gt;* Fixed a bug that prevented iGetter to download through SSL connections in some cases.&lt;br /&gt;* Fixed a bug that crashed iGetter when downloading very small files (less than 5 bytes).&lt;br /&gt;* Fixed a bug that caused a crash, in some rare cases, when downloading simultaneously many files with many connections.&lt;br /&gt;* Fixed a bug that could crash iGetter, when processing URLs received from external sources - Browser integration, CM integration, Finder integration, etc.&lt;br /&gt;* Fixed a bug with browser integration, that in some rare cases could cause a crash in Safari when a "POST" HTTP method is used.&lt;br /&gt;* Fixed a bug with "Content-Disposition" HTTP header entity, when no filename is provided.&lt;br /&gt;* Fixed the redownload function to sort properly the multiple files included for redownload according to their positions in the History list.&lt;br /&gt;* Some other fixes and improvements.&lt;br /&gt;&lt;br /&gt;REQUIREMENTS&lt;br /&gt;Mac OS X 10.2.x or later.&lt;br /&gt;SIZE: 5 MB&lt;br /&gt;&lt;br /&gt;Cracked to always think it's registered. Do not use the "Register" menu option under the Help menu, there is no need to.&lt;br /&gt;&lt;br /&gt;Step - 1 - Make sure to use the Uninstall iGetter tool first&lt;br /&gt;Step - 2 - You must copy the license file called iGetter2 License.lic into&lt;br /&gt;/Users/~YOU~/Library/Application Support/iGetter folder otherwise the program just quits randomly&lt;br /&gt;Step - 3 - Copy the iGetter 2.8 folder to your HD&lt;br /&gt;Step - 4 - Reboot your Mac for the newly installed iGetterCMPlugIn.plugin to load properly&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Download Link&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://hotfile.com/dl/54598127/3131d75/iGetter_X_2.8.rar.html" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://hotfile.com/dl/54598127/3131d75/iGetter_X_2.8.rar.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;enjoy&amp;nbsp;&lt;img src="http://www.syok.org/portal/images/smiley/grin.gif" /&gt;&lt;img src="http://www.syok.org/portal/images/smiley/grin.gif" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-2457455637439455600?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/2457455637439455600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/08/igetter-mac-os-x.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2457455637439455600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2457455637439455600'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/08/igetter-mac-os-x.html' title='iGetter Mac OS X'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-1998372655070282039</id><published>2011-08-17T23:54:00.000-07:00</published><updated>2011-08-17T23:54:13.089-07:00</updated><title type='text'>How to Jailbreak iPad 2 On iOS 4.3.3</title><content type='html'>&lt;br /&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;&lt;strong&gt;Step 1:&lt;/strong&gt;&amp;nbsp;Launch Safari and open the URL&amp;nbsp;&lt;a href="http://jailbreakme.com/" style="color: #336699; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: none;" target="_blank"&gt;http://jailbreakme.com&lt;/a&gt;. If the whole thing goes as projected, you should see this on your browser:&lt;/div&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;&lt;a href="http://www.techoncept.com/wp-content/uploads/2011/07/jailbreak-iPad2.png" style="color: #336699; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: none;"&gt;&lt;img alt="jailbreak-iPad2" class="aligncenter size-full wp-image-3633" height="487" src="http://www.techoncept.com/wp-content/uploads/2011/07/jailbreak-iPad2.png" style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(221, 221, 221); border-bottom-style: solid; border-bottom-width: 1px; border-color: initial; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-style: solid; border-top-width: 1px; border-width: initial; clear: both; display: block; float: none; margin-bottom: 15px; margin-left: auto; margin-right: auto; margin-top: 0px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="jailbreak-iPad2" width="650" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;&lt;strong&gt;Step 2:&lt;/strong&gt;&amp;nbsp;As instructed, tap on the “FREE” button, followed by “INSTALL”. You may get stuck on this point for few second but keep patience.&lt;/div&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;&lt;a href="http://www.techoncept.com/wp-content/uploads/2011/07/jailbreak-iPad2-1.png" style="color: #336699; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: none;"&gt;&lt;img alt="jailbreak-iPad2-1" class="aligncenter size-full wp-image-3634" height="487" src="http://www.techoncept.com/wp-content/uploads/2011/07/jailbreak-iPad2-1.png" style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(221, 221, 221); border-bottom-style: solid; border-bottom-width: 1px; border-color: initial; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-style: solid; border-top-width: 1px; border-width: initial; clear: both; display: block; float: none; margin-bottom: 15px; margin-left: auto; margin-right: auto; margin-top: 0px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="jailbreak-iPad2-1" width="650" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;&lt;strong&gt;Step 3:&lt;/strong&gt;&amp;nbsp;You’re basically done here. The hack process will now take advantage of an exploit in your browser to load the required files onto your system and execute a jailbreak script right on your handset. Safari should automatically close; here you will see a Cydia icon on your Home Screen, with a progress bar, much like any other official app while it’s downloading.&lt;/div&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;&lt;a href="http://www.techoncept.com/wp-content/uploads/2011/07/iPad-2-cydia.png" style="color: #336699; outline-color: initial; outline-style: none; outline-width: initial; text-decoration: none;"&gt;&lt;img alt="iPad-2-cydia" class="aligncenter size-full wp-image-3635" height="533" src="http://www.techoncept.com/wp-content/uploads/2011/07/iPad-2-cydia.png" style="background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(221, 221, 221); border-bottom-style: solid; border-bottom-width: 1px; border-color: initial; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-style: solid; border-top-width: 1px; border-width: initial; clear: both; display: block; float: none; margin-bottom: 15px; margin-left: auto; margin-right: auto; margin-top: 0px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px;" title="iPad-2-cydia" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;&lt;strong&gt;Step 4:&lt;/strong&gt;&amp;nbsp;After completing this, you must now see Cydia on your iPad 2’s Home Screen!&lt;/div&gt;&lt;div style="color: #444444; font-family: arial, helvetica, sans-serif; font-size: 12px; font: normal normal normal 1.2em/normal Arial, sans-serif; line-height: 18px; margin-bottom: 15px; margin-top: 0px; text-align: justify;"&gt;Regardless of its cleanness, the most important thing is it is totally untethered jailbreak; there is no warning message at the end of this jailbreak guide.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-1998372655070282039?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/1998372655070282039/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/08/how-to-jailbreak-ipad-2-on-ios-433.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1998372655070282039'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1998372655070282039'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/08/how-to-jailbreak-ipad-2-on-ios-433.html' title='How to Jailbreak iPad 2 On iOS 4.3.3'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-615341419358751600</id><published>2011-08-02T07:37:00.000-07:00</published><updated>2011-08-02T07:37:15.862-07:00</updated><title type='text'>BLACKBERRY TIPS AND TRICK</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: arial, helvetica, clean, sans-serif; font-size: 13px; line-height: 16px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Tips&lt;/strong&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;These BlackBerry tips will help you work easier, better and faster.&lt;/div&gt;&lt;ol style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=93" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Delete Multiple Messages&lt;/a&gt;&lt;/strong&gt;: Search for messages, then press Delete Prior to delete all of the messages in the results.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Read "&lt;a href="http://www.washingtonpost.com/wp-dyn/content/article/2007/06/10/AR2007061001276.html" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;A Wired-In Guy Getting Set for a Big Date&lt;/a&gt;":&lt;/strong&gt;&amp;nbsp;Stick your wet BlackBerry, or any other doomed device, (turned off) in a bowl of uncooked rice overnight, and it will suck out the moisture.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Navigate Your Calendar Quickly:&lt;/strong&gt;&amp;nbsp;First, enable Quick Entry, then press "D" for day, "W" for week, "M" for month and "A" for agenda.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://forums.crackberry.com/f3/handy-tip-separate-your-smss-emails-6035/" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Separate SMS (Short Message Service) Messages and Emails&lt;/a&gt;&lt;/strong&gt;: Select Separate in the SMS and Email Inboxes field under General Options.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=140" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Select Text on a Page&lt;/a&gt;&lt;/strong&gt;: To highlight text, press Shift, then move the wheel up or down.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Delete by Date&lt;/strong&gt;: Click a date and press Delete Prior to restore order to your mailbox while still retaining your most recent messages.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberryfaq.com/index.php/Tips_and_Tricks" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Get BlackBerry Tips, Tricks and Key-Press Shortcuts&lt;/a&gt;:&lt;/strong&gt;&amp;nbsp;Learn important keys, message tips and more.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=89" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Permanently Delete Emails&lt;/a&gt;&lt;/strong&gt;: To ensure that you're permanently deleting emails, delete them from your email client rather than using the Delete Prior feature.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Capitalize Letters:&lt;/strong&gt;&amp;nbsp;Press and hold letters down to make them capitals.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://forums.crackberry.com/f3/how-block-pin-sms-mms-messages-9034/" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Turn Off Messages&lt;/a&gt;&lt;/strong&gt;: You can choose to turn off messages by going through your&amp;nbsp;&lt;a href="http://www.itsecurity.com/" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;security&lt;/a&gt;options and modifying your&amp;nbsp;&lt;a href="http://www.itsecurity.com/firewalls/" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;firewall&lt;/a&gt;&amp;nbsp;settings.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Get Better Coverage with Your Radio:&lt;/strong&gt;&amp;nbsp;If your coverage is not doing well, try turning your radio off and on to force a network scan.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Scroll Down:&lt;/strong&gt;&amp;nbsp;Use your spacebar to scroll down a page, then press Shift and the spacebar simultaneously to move back up.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberryforums.com/aftermarket-software/2018-blackberry-calendar-tricks.html" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Get BlackBerry Calendar Tricks&lt;/a&gt;&lt;/strong&gt;: This post covers popular tricks for the BlackBerry's calendar.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=7" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Sync Specific Folders&lt;/a&gt;&lt;/strong&gt;: Set up Folder Redirection to sync only selected email folders to your BlackBerry.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Dial Letter Numbers&lt;/strong&gt;: Call lettered numbers like 1-800-GOOG-411 by pressing Alt, hen typing the letters.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=144" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Empty Your Phone-Call Log&lt;/a&gt;&lt;/strong&gt;: Enable Call Logging, then delete items in your Phone Call Logs folder.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Insert the "@" Symbol in an Email Message&lt;/strong&gt;. Press the spacebar to enter an "@" symbol in a message or press it twice to insert a period.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Dry Your Device with Silica Gel&lt;/strong&gt;: If you've dropped your BlackBerry in water, dry it out with silica-gel packets, which often come in shoeboxes. This also works with silica cat litter, which is generally labeled as crystal.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Select Special Characters&lt;/strong&gt;: Press and hold a letter key, then move the thumb wheel up or down to get the appropriate character.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=74" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Enable Content Protection&lt;/a&gt;&lt;/strong&gt;: Store data on your device securely by enabling content protection.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Stop a Page from Loading&lt;/strong&gt;. Press the Escape button to keep Web pages from loading.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=59" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Reboot Your BlackBerry&lt;/a&gt;&lt;/strong&gt;: You can reboot your BlackBerry without pulling out your battery by pressing Alt, Caps and Delete simultaneously.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;Dry Your BlackBerry with Alcohol&lt;/strong&gt;: Another drying option that also disinfects is 100 percent alcohol. Turn your BlackBerry off, soak it in alcohol and take it apart as much as possible. The alcohol should evaporate with exposure to air.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=137" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Read the Top 10 Phone Tips from BlackBerry&lt;/a&gt;&lt;/strong&gt;: This list includes simple tips for changing volume, speed-dialing and more.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://crackberry.com/advanced-crackberry-tip-use-your-blackberry-flashlight" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Use Your BlackBerry as a Flashlight&lt;/a&gt;&lt;/strong&gt;: The BlackBerry makes a great flashlight for middle-of-the-night runs to the fridge or the bathroom.&lt;/li&gt;&lt;li style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; list-style-position: outside; list-style-type: decimal; margin-bottom: 0px; margin-left: 26px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;strong style="font-weight: bold;"&gt;&lt;a href="http://www.blackberrytips.net/tips.php?id=68" rel="nofollow" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #09539e; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: medium; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;Delete Mail-Client Emails from Your BlackBerry&lt;/a&gt;&lt;/strong&gt;: Select Purge Deleted Items under Email Reconciliation to delete emails on your mail client.&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-615341419358751600?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/615341419358751600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/08/blackberry-tips-and-trick.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/615341419358751600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/615341419358751600'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/08/blackberry-tips-and-trick.html' title='BLACKBERRY TIPS AND TRICK'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-6650639783298523574</id><published>2011-07-14T21:30:00.000-07:00</published><updated>2011-07-14T21:30:07.973-07:00</updated><title type='text'>Sepuluh Perkara Yang Menjejaskan Prestasi Komputer</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Sepuluh perkara yang menjejaskan prestasi komputer&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Kemungkinan selepas setahun kita menggunakan komputer, kita akan dapati terdapat beberapa perubahan yang ketara terhadap prestasi komputer kita misalnya selalu 'hang' ataupun operasi yang semakin lambat. Jika kita pengguna yang hardcore pula, masalah ini pasti berlaku lebih awal lagi. Berikut disenaraikan sepuluh perkara yang dirasakan menjadi punca kepada terjejasnya prestasi komputer kita.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;1. Mikropemproses mengalami kepanasan melampau.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Kepanasan melampau ini terjadi apabila motor kipas yang menjadi penyejuk kepada mikropemproses tidak dapat berfungsi dengan baik. Ini disebabkan habuk yang terdapat di sekeliling kipas yang menyekat putaran kipas tersebut. Selain daripada itu, mungkin bearing kipas menjadi longgar yang menyebabkan gegaran berlaku pada mikropemproses. Kesannya ialah mikropemproses tidak dapat bekerja dengan baik.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;2. Masalah RAM&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Terdapat juga RAM yang dari jenis murah yang tidak memenuhi spesifikasi serta mempunyai masalah komposisi cip-cip yang siap terbina. Akibat dari masalah ini, ialah RAM mudah mengalami kepanasan melampau yang menjejaskan keupayaan komputer. Selain daripada itu, masalah ëBlue Screení juga akan lebih kerap berlaku.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;3. Cakera keras&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Bagi cakera keras pula, masalah-masalah yang menyebabkan terjejasnya prestasi komputer ialah seperti bertambahnya sektor-sektor rosak (bad sector) ketika melakukan proses chkdsk dan scandisk, kerosakan dalaman (intermittent) yang mengakibatkan kegagalan proses boot dan capaian putaran per masa yang rendah yang mungkin tidak sesuai dengan spesifikasi komputer yang digunakan.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;4. Konfigurasi BIOS&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Pengguna komputer seharusnya tidak terlalu bergantung kepada konfigurasi BIOS 'kilang' sebaliknya perlu mengetahui konfigurasi sistem yang optimum. Ini adalah kerana konfigurasi BIOS yang tidak tepat turut mempengaruhi keupayaan komputer.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;5. Pengawal Cakera&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Kabel pengawal yang digunakan perlu menepati spesifikasi pengawal cakera yang dipasang. Begitu juga dengan papan ibu (motherboard) yang harus mampu menyokong pengawal cakera. Sebagai contoh pengawal cakera UDMA-66 memerlukan kad khusus untuk dipasang pada papan ibu yang hanya menyokong pengawal cakera UDMA-33. Jika tidak dipasang, ia pasti akan mengundang masalah kepada prestasi komputer.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;6. Sistem Operasi&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Sistem operasi seperti Windows XP dan Windows 2000 biasanya mempunyai banyak servis yang dijalankan. Servis-servis yang dijalankan jika terlampau banyak akan merencatkan prestasi komputer. Servis yang jarang diguna sepatutnya diberhentikan kerana ia banyak menggunakan sumber tenaga komputer.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;7. Proses dan Aplikasi&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Proses dan Aplikasi (.exe) yang terlampau banyak digunakan akan menyebabkan komputer menjadi perlahan. Untuk melihat proses dan aplikasi yang sedang dilarikan, pengguna bolehlah klik pada bahagian Windows Task Manager.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;8. Fragmentasi Cakera&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Fragmentasi cakera berlaku apabila terlalu kerap fail-fail disimpan, dipadam dan ditukar. Ini menyebabkan kandungan fail bertaburan didalam sektor. Fragmentasi juga berlaku apabila kandungan cakera penuh. Seharusnya ruang kosong sebanyak 20% sehingga 25% perlu disediakan bagi mengurangkan masalah fragmentasi ini.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;9. Aplikasi latar belakang&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Ramai pengguna yang suka melarikan aplikasi latar belakang secara automatik selepas proses boot ataupun permulaan sistem operasi. Aplikasi yang terlalu banyak dilarikan pada satu-satu masa akan menyebabkan komputer menjadi perlahan dan adakalanya menyebabkan 'hang'. Aplikasi-aplikasi yang digunakan ini boleh dilihat pada folder Startup.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;10.Sistem fail&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Dalam sistem operasi Windows terutamanya NT dan 2000, pemilihan sistem fail iaitu NTFS dan FAT adalah sangat penting. Ini adalah kerana sistem fail ini merujuk kepada saiz dan bilangan kelompok dalam sesuatu cakera. Saiz kelompok yang besar akan meningkatkan prestasi komputer. Kebiasaanya, sistem fail NTFS mempunyai saiz kelompok yang lebih besar berbanding FAT.&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-6650639783298523574?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/6650639783298523574/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/07/sepuluh-perkara-yang-menjejaskan.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6650639783298523574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6650639783298523574'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/07/sepuluh-perkara-yang-menjejaskan.html' title='Sepuluh Perkara Yang Menjejaskan Prestasi Komputer'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-9023248983749986151</id><published>2011-07-14T21:21:00.000-07:00</published><updated>2011-07-14T21:21:59.432-07:00</updated><title type='text'>cara-cara untuk memasuki web yg kena block</title><content type='html'>&lt;table cellpadding="0" cellspacing="1" class="tbl-border" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl2" style="background-color: #f1f1f1; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;span class="Apple-style-span" style="background-color: white; color: black; font-size: small;"&gt;cara masuk website yang kena block.. setting dari pc je..&lt;img src="http://www.syok.org/portal/images/smiley/pewit.gif" /&gt;&lt;br /&gt;&lt;br /&gt;1. pergi "Control Panel"&lt;br /&gt;2. click "Network Connections"&lt;br /&gt;3. click "Local Area Connection" tulisan biru tu and click "Properties"&lt;br /&gt;4. double click atau click properties utk "Internet Protocol (TCP/IP)" atau "Internet Protocol (TCP/IPv4)&lt;br /&gt;5. mark "Use the following DNS Serve Adresses" yg kat bwh type "8.8.8.8" kat 1st column and "8.8.4.4" kat 2nd column and click OK&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;untuk windows 7..&lt;br /&gt;&lt;br /&gt;Control Panel -&amp;gt; View Network and Status Tasks -&amp;gt; Local Area Connection -&amp;gt; Properties -&amp;gt; Click "Internet Protocol Version 4 (TCP/IPv4)" then click properties -&amp;gt; Click use the following DNS serve adresses.&lt;br /&gt;&lt;br /&gt;Preffered DNS server : 8.8.4.4&lt;br /&gt;Alternate DNS server : 8.8.8.8&lt;br /&gt;&lt;br /&gt;Click OK! DONE!&amp;nbsp;&lt;img src="http://www.syok.org/portal/images/smiley/lol2.gif" /&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-9023248983749986151?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/9023248983749986151/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/07/cara-cara-untuk-memasuki-web-yg-kena.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/9023248983749986151'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/9023248983749986151'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/07/cara-cara-untuk-memasuki-web-yg-kena.html' title='cara-cara untuk memasuki web yg kena block'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-7085186834494932749</id><published>2011-07-14T21:16:00.000-07:00</published><updated>2011-07-14T21:16:12.271-07:00</updated><title type='text'>Cara Menggunakan 2 Yahoo Messenger Serentak dalam satu PC!</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Ada berapa banyak akaun Yahoo yang anda miliki? Atau Berapa ramai teman-teman anda? Berapa banyak kenalan yang ada pada yahoo messenger anda?&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Anda suka untuk mengekspresikan diri anda secara peribadi atau professonally dan itu sebabnya anda menggunakan dua yahoo ID? Benar? Atau anda mempunyai beberapa masalah pada ID yahoo lama anda?&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Namun, sampai sekarang anda ingin menggunakan YAHOO ID lama anda dan YAHOO baru ID dari satu PC. Biasanya, Yahoo Messenger tidak menyokongnya. Anda boleh login dengan beberapa id di Yahoo messenger yang sama tanpa download atau patch!.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Di sini, Arahan pendek bagi anda untuk menggunakan dua yahoo messenger.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Ikuti langkah-langkah ini: -&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;1. Klik Start - Run. Taip regedit, kemudian tekan ENTER.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;2.Pergi ke HKEY_CURRENT_USER --- Software - Yahoo! - Pager - Test&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;3.Pada panel sebelah kanan, klik kanan dan pilih new DWORD value.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;4.Rename sebagai Plural.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;5.Double klik dan tetapkan nilai 1.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Itu saja.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Sekarang tutup registry dan restart Yahoo! Messenger&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Sekarang anda boleh buka 2 Yahoo Messenger dengan serentak!&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-7085186834494932749?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/7085186834494932749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/07/cara-menggunakan-2-yahoo-messenger.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7085186834494932749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7085186834494932749'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/07/cara-menggunakan-2-yahoo-messenger.html' title='Cara Menggunakan 2 Yahoo Messenger Serentak dalam satu PC!'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-7687974490211097732</id><published>2011-07-13T20:03:00.000-07:00</published><updated>2011-07-13T20:03:09.475-07:00</updated><title type='text'>Windows 8 Metro X64</title><content type='html'>&lt;table border="0" cellpadding="0" cellspacing="0" class="tbl-border" style="background-color: #e1e1e1; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl1" height="185" style="background-color: white; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;center&gt;&lt;img src="http://img714.imageshack.us/img714/1460/44673132.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;img src="http://img194.imageshack.us/img194/1094/10315301.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;img src="http://img818.imageshack.us/img818/4922/80938620.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;img src="http://img839.imageshack.us/img839/9375/64750836.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;img src="http://img94.imageshack.us/img94/6390/91054221.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;b&gt;Author:_Buster67&lt;br /&gt;Code name:_Windows 8 Metro&lt;br /&gt;Language:_English US&lt;br /&gt;Size:__3.59 GB (3,861,983,232 bytes) ISO&lt;br /&gt;MD5:__054326643ec1486c279b848a19d37fcf&lt;br /&gt;SHA1:__d5578f2a29e92f7524e3fc942626643fabceaa99&lt;br /&gt;CRC32__20502bbe&lt;br /&gt;Architecture:___64-Bit&lt;br /&gt;Version based:__Windows 7 Ultimate SP1&lt;br /&gt;License:__30 days trial&lt;/b&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;New Windows Media Player skin&lt;br /&gt;New windows media center skin&lt;br /&gt;New icons&lt;br /&gt;New windows sounds&lt;br /&gt;84 RocketDock themes&lt;br /&gt;New RocketDock Icons&lt;br /&gt;New Logonscreen&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Components removed.&lt;br /&gt;&lt;br /&gt;Ease of Access Center&lt;br /&gt;Clear Type Tuner&lt;br /&gt;Infrared File Transfer Application&lt;br /&gt;Mobility Center&lt;br /&gt;On-Screen Magnifier&lt;br /&gt;People Near Me&lt;br /&gt;Projector Connectivity&lt;br /&gt;Speech Recognition&lt;br /&gt;Welcome Center&lt;br /&gt;Sample Music and Videos&lt;br /&gt;Sample Pictures&lt;br /&gt;Sound Recorder&lt;br /&gt;Windows Remote Assistance&lt;br /&gt;Remote Desktop Connection&lt;br /&gt;Natural Language&lt;br /&gt;Narrator=True&lt;br /&gt;On-Screen Keyboard&lt;br /&gt;TabletPCOC&lt;br /&gt;Windows Help&lt;br /&gt;Snipping tool&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Applications Installed&lt;br /&gt;&lt;br /&gt;7 zip 9.20&lt;br /&gt;Adobe Flash Player 10 ActiveX&lt;br /&gt;Adobe Flash Player 10 plugin&lt;br /&gt;Adobe shockwave Player 11.5&lt;br /&gt;Gimp 2.6.1&lt;br /&gt;java v 6.0.240&lt;br /&gt;RocketDock 1.3.5&lt;br /&gt;Rainmeter&lt;br /&gt;Internet Explorer 9&lt;br /&gt;Notepad2 v4.2.25-rc5&lt;br /&gt;Notepad++ V5.8.7&lt;br /&gt;Microsoft Silerlight V4.0.60129.0&lt;br /&gt;Microsoft .NET Framework 4 Extended 4.0.30319&lt;br /&gt;Microsoft Visual C++&lt;br /&gt;Taskbar user pic&lt;br /&gt;Metro Home&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;b&gt;Tweak dia mmg terbaik....WPI aku naik ke 4.1 dr 3.9&lt;/b&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.mediafire.com/?bg8hhcqe2x1ch" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?bg8hhcqe2x1ch&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red;"&gt;&lt;i&gt;adalah dilarang untuk mod atau tambah tweak lg kepada windows ni&lt;/i&gt;&lt;/span&gt;&lt;/center&gt;&lt;br /&gt;&lt;span style="color: green;"&gt;&lt;center&gt;aku dah test...ok...bleh abaikan kaler merah diatas..&lt;img src="http://www.syok.org/portal/images/smiley/cool2.gif" /&gt;&lt;/center&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr style="border-bottom-color: rgb(238, 238, 238); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(238, 238, 238); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(238, 238, 238); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(238, 238, 238); border-top-style: solid; border-top-width: 1px; height: 1px;" /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=136885" style="color: #005599; text-decoration: none;" target="_blank"&gt;Windows Blanco Xp 2010 SATA Driver Activated 2010&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=135930" style="color: #005599; text-decoration: none;" target="_blank"&gt;Just sharing Custom Theme for Win 7&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=136892" style="color: #005599; text-decoration: none;" target="_blank"&gt;Windows XP SP3 2011 v11.01&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=137061" style="color: #005599; text-decoration: none;" target="_blank"&gt;Windows 8 Metro X64 by _Buster67&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=136890" style="color: #005599; text-decoration: none;" target="_blank"&gt;Windows Xp Drivers x32/x64 Update 14.05.2011&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=133037" style="color: #005599; text-decoration: none;" target="_blank"&gt;Window 7 Gamer 64 by Undeadcrows&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=134410" style="color: #005599; text-decoration: none;" target="_blank"&gt;7 Ultimate NAOS SP1 64 BIT by _Buster67&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=26&amp;amp;thread_id=133297" style="color: #005599; text-decoration: none;" target="_blank"&gt;Windows7 Perfection Netbook Edition x86 2011&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;&lt;center&gt;&lt;a href="http://www.syok.org/portal/forum/viewthread.php?forum_id=12&amp;amp;thread_id=134525" style="color: #005599; text-decoration: none;" target="_blank"&gt;Tips untuk penggemar Windows 7 + Mod&lt;/a&gt;&lt;/center&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-7687974490211097732?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/7687974490211097732/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/07/windows-8-metro-x64.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7687974490211097732'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7687974490211097732'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/07/windows-8-metro-x64.html' title='Windows 8 Metro X64'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-2934222750959267206</id><published>2011-07-13T19:38:00.000-07:00</published><updated>2011-07-13T19:38:19.779-07:00</updated><title type='text'>Islamic theme for Windows 7</title><content type='html'>&lt;table border="0" cellpadding="0" cellspacing="0" class="tbl-border" style="background-color: #e1e1e1; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl1" height="185" style="background-color: white; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;img src="http://img18.imageshack.us/img18/6136/islamicwindows7themebyy.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;&lt;span style="color: purple;"&gt;Islamic Windows 7 Theme Quran Sounds Islamic Icons Prayer Gadget Blue Curosrs&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="color: red;"&gt;In The Name Of Allah .. I introduce to you magnificent Islamic Windows 7 Theme that i can say it is the best of my themes the theme come with start button (orb) in shape of Allah in arabic created by me and prayer gadget to alarm you when the prayer time comes in addition of the regular theme content of sounds icons and curosrs .. i think all muslims should try it i hope it spread the peace in your hearts.&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: blue;"&gt;&lt;b&gt;Islamic Windows 7 Theme consists of&lt;/b&gt;&lt;/span&gt;&amp;nbsp;:&lt;br /&gt;&lt;span style="color: maroon;"&gt;&lt;br /&gt;&lt;b&gt;- 62 Amazing Islamic Wallpapers&lt;br /&gt;- Quran sounds&lt;br /&gt;- Islamic Icons&lt;br /&gt;- Blue Wonderful Curosrs&lt;br /&gt;- Allah Start Button ( Orb ) created by me&lt;br /&gt;- Prayer times gadget to alarm you in every prayer and don’t forget to pray for me and ask for forgiveness for me&lt;br /&gt;- To install just Click on Islamic Themepack ..&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-2934222750959267206?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/2934222750959267206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/07/islamic-theme-for-windows-7.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2934222750959267206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2934222750959267206'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/07/islamic-theme-for-windows-7.html' title='Islamic theme for Windows 7'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-5564995712996270364</id><published>2011-07-09T04:37:00.000-07:00</published><updated>2011-07-09T04:37:26.254-07:00</updated><title type='text'>Angry Birds Theme</title><content type='html'>&lt;table border="0" cellpadding="0" cellspacing="0" class="tbl-border" style="background-color: #e1e1e1; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl1" height="185" style="background-color: white; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;br /&gt;&lt;img src="http://img143.imageshack.us/img143/1478/angrybirdsofficialtheme.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;Download:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://eins.my/download-angry-birds-official-theme-for-windows-7/" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://eins.my/download-angry-birds-official-theme-for-windows-7/&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-5564995712996270364?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/5564995712996270364/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/07/angry-birds-theme.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/5564995712996270364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/5564995712996270364'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/07/angry-birds-theme.html' title='Angry Birds Theme'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-6867477438427495793</id><published>2011-06-27T23:32:00.000-07:00</published><updated>2011-06-27T23:32:21.544-07:00</updated><title type='text'>Kaspersky PURE, KIS, KAV 2011 9850 Days [fix fltlib.ini &amp; fltlib.dll]</title><content type='html'>&lt;table border="0" cellpadding="0" cellspacing="0" class="tbl-border" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl1" height="185" style="background-color: white; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;patch ni aku telah ubah suai.. yg ada skrg cuma 2016 (2036 days)..&lt;br /&gt;aku upkan tarikh luput 3750.. cara nk patch dia sama dengan ABL PATCH&lt;br /&gt;&lt;br /&gt;&lt;a href="http://img573.imageshack.us/i/kaspersky.jpg/" style="text-decoration: none;" target="_blank"&gt;&lt;img src="http://img573.imageshack.us/img573/5878/kaspersky.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ni contoh gmbr yg aku amik dr pc aku.. siap update lg..&lt;br /&gt;&lt;br /&gt;&lt;a href="http://img341.imageshack.us/i/kaspersky1.jpg/" style="text-decoration: none;" target="_blank"&gt;&lt;img src="http://img341.imageshack.us/img341/1072/kaspersky1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://img228.imageshack.us/i/kaspersky2u.jpg/" style="text-decoration: none;" target="_blank"&gt;&lt;img src="http://img228.imageshack.us/img228/8984/kaspersky2u.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;INI YANG TERBARU AKU WAT&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://img703.imageshack.us/i/kaspersky2.jpg/" style="text-decoration: none;" target="_blank"&gt;&lt;img src="http://img703.imageshack.us/img703/1808/kaspersky2.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://img811.imageshack.us/i/kaspersky1.jpg/" style="text-decoration: none;" target="_blank"&gt;&lt;img src="http://img811.imageshack.us/img811/1072/kaspersky1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://img9.imageshack.us/i/blockfj.jpg/" style="text-decoration: none;" target="_blank"&gt;&lt;img src="http://img9.imageshack.us/img9/9759/blockfj.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;center&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?2myy59twlahzytu" style="text-decoration: none;" target="_blank"&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;.: Video Toturial :.&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;center&gt;&lt;a href="http://www.mediafire.com/?ltwajv87su1ez6j" style="text-decoration: none;" target="_blank"&gt;.: INSTALLER KASPERSKY PURE :.&lt;/a&gt;&lt;/center&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;cara² nk modify expire ye..&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;1. msuk setting pure..&lt;br /&gt;2. disable enable protection &amp;amp; enable self defense..&lt;br /&gt;3. close pure..&lt;br /&gt;4. cari file dan open fltlib.ini.. klu nk edit expire kat file ni.. jgn dlm file directory ye.. cth aku wat.. edit di partition lain pastu copy &amp;amp; paste file yg kita edit tadi dlm file directory ye..&lt;br /&gt;5. yg mn aku bold itu shj bleh edit @ COPY yg ada di bwah ni sma jgk.. dah siap edit paste kat file directory ye..&lt;br /&gt;&lt;br /&gt;KeyCreationDateYear=2010&lt;br /&gt;&lt;b&gt;KeyCreationDateMonth=1&lt;br /&gt;KeyCreationDateDay=3&lt;/b&gt;&lt;br /&gt;KeyType=5&lt;br /&gt;&lt;b&gt;KeyLifeSpan=9850&lt;br /&gt;KeyExpireDateYear=9850&lt;br /&gt;KeyExpireDateMonth=12&lt;br /&gt;KeyExpireDateDay=23&lt;br /&gt;KeyLicCount=1&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;6. open pure.. pastu dia naik invalid key.. delete key lama..&lt;br /&gt;7. plih activate with new license.. klik next..&lt;br /&gt;8. taip di kotak tersebut 11111-11111-11111-1111x&lt;br /&gt;&lt;br /&gt;9. klik next.. pastu naik key validaty..&lt;br /&gt;10. browse key yg diberi.. klik next..&lt;br /&gt;10. enable blik self defence &amp;amp; protection stelah berjaya..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;NEW FIX FLTLIB&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img84.imageshack.us/img84/4856/kasqo.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;cara nk patch wat mcm sblm ni.. cuma ubah skit ja.. msa nk activate key.. korang kna tutup network.. x perlu secara on9 utk activate..&lt;br /&gt;contoh: msa korang nk msukkan 11111-11111-11111-1111x pda kotak trsbut.. x perlu on9.. tutup network korang lg cpat access&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;aku dh jmpa patch bru bg atasi mslh fltlib.dll.. aku dah try &amp;amp; restart.. file itu msih ada.. pure aku pn x da mlsh skrg..&lt;br /&gt;aku hnya edit 5000 days je.. klu korang nk brp byk, korang edit mcm besa.. video tutorial ada di bwah.. korang tgk dlu.. skrg da ubah sdikit.. cara activate.. aku wat cara ni ok lg.. dah 3 hari.. dok restart komp.. x kantoi lg pn..&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;center&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?759b6bg7pb0pxxs" style="text-decoration: none;" target="_blank"&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;.: New Patch :.&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?qq2au9rma98d5ca" style="text-decoration: none;" target="_blank"&gt;.: VideO ToTuriAL :.&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;center&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;a href="http://www.mediafire.com/?jn5vmsynt3kb39h" style="text-decoration: none;" target="_blank"&gt;.: KEY KIS &amp;amp; KAV :.&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;UNIVERSAL SHIELD (Mesti Kna Install)&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;skrg aku dah install prog bru bg protect file DLL smasa restart.. klu korang hnya pkai patch semata2 je.. kspersky akn detct patch ni.. ni jln trbaru br halang patch trsbut di kesan oleh kspersky..&lt;br /&gt;&lt;br /&gt;cara nk install..&lt;br /&gt;&lt;br /&gt;1. donlot &amp;amp; extract ke smua file..&lt;br /&gt;&lt;br /&gt;2. install universal.. restart komp korang..&lt;br /&gt;&lt;br /&gt;3. slps restart, run patch administrator utk crack prog ni.. (patch dah sediakan)&lt;br /&gt;&lt;br /&gt;4. run universal shield prog.. slps bka prog.. welcome to wizard akn muncul.. korang cancel.. x perlu wat..&lt;br /&gt;&lt;br /&gt;5. klik pda protect.. plih file.. klik pda kotak kcil utk bowse.. cri FLTLIB.dll.. pda bhgian access plak.. korang plih NO ACCESS..&lt;br /&gt;&lt;br /&gt;6. klik pda protect.. plih file.. klik pda kotak kcil utk browse.. cri FLTLIB.ini.. pda bhgian access.. korang plih OTHER.. tick pda READ.. cth aku wat..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img849.imageshack.us/img849/2561/shieldc.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. pda prog trsbut.. korang cri security.. plih trusted process.. klik pda add to list.. korang cri AVP.exe pda kaspersky pure folder.. klik ok..&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img857.imageshack.us/img857/5764/shield3.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. klik pda options.. korang tick ke smua.. mcm gmbr ni..&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img855.imageshack.us/img855/5667/shield1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;center&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?peyx7ogp0opjc5b" style="text-decoration: none;" target="_blank"&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;.: INstall UniverSal Shield :.&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;license key Block BOX_KTR&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;cara2 nk reset PURE&lt;br /&gt;&lt;br /&gt;1. buka PURE, buka Setting..&lt;br /&gt;2. Disable self defense dgn enable protection.. close PURE..&lt;br /&gt;3. copy patch yg sblm ni.. paste kat file directory.. jgn buka PURE lg..&lt;br /&gt;4. buka BOX_KTR... klik RESET.. reset ni ambil masa jgk la.. tggu sehgga ACTIVATION WIZARD kuar... pilih ACTIVATION COMMERCIAL KEY..&lt;br /&gt;5. msuk digit.. 11111-11111-11111-1111x.. klik next.. pastu kuar WRONG KEY.. klik BROWSE.. cari license key yg asl..&lt;br /&gt;6. klik next, sehgga berjya..&lt;br /&gt;&lt;br /&gt;OR&lt;br /&gt;&lt;br /&gt;1. bka start menu.. klik pda run.. taip regedit..&lt;br /&gt;&lt;br /&gt;2. pergi ke alamat ni..&lt;br /&gt;HKEY_LOCAL_MACHINE\SOFTWARE\kasperskylab\protected\AVP9\environment..&lt;br /&gt;&lt;br /&gt;3. cri PCID, korang ubah nilai dlm tu.. jgn ke smua nilai tu.. hnya 1 je..&lt;br /&gt;cth : asl:{4C055469-C1A9-44F2-B460-0BD165B5F76A}&lt;br /&gt;slps :{4B055469-C1A9-44F2-B460-0BD165B5F76A}&lt;br /&gt;&lt;br /&gt;trial korang jadi 30 hari smula.. aku dah try wat.. mmg mnjadi..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;program ni lbh kurang trial reset je.. klu nk gna disable self defense dgn protection br leh gna.. klu bleh korang add exclusion sbb pure detect sbg hacktool..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;aku dh try pkai prog ni.. key aku dh x kna block lg.. dah try update.. restart suma dah okey.. ftltlib.dll x hilang @ delete oleh PURE..&lt;br /&gt;korang test dlu.. bg feedback.. aku tengah mncari patch2 baru utk warga syok.org...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img265.imageshack.us/img265/3615/ksprsky1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; overflow-x: auto; overflow-y: auto; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; white-space: nowrap; width: 400px;"&gt;&lt;code style="white-space: nowrap;"&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;http://www.mediafire.com/?p54g5v32p74zd94&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;Remove Nag Message &amp;amp; Patch&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;center&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;Removes the message : "Trial version of application is installed and Buy commercial licence"&lt;/span&gt;&lt;/b&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?ctgmmmqcfbn0zh9" style="text-decoration: none;" target="_blank"&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;.: Patch Nag Message :.&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="background-color: #eeeeee; color: black;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;DA settle smua.. klu ada mslh yg paham bleh bertnya d cni..&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-6867477438427495793?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/6867477438427495793/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/06/kaspersky-pure-kis-kav-2011-9850-days.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6867477438427495793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/6867477438427495793'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/06/kaspersky-pure-kis-kav-2011-9850-days.html' title='Kaspersky PURE, KIS, KAV 2011 9850 Days [fix fltlib.ini &amp; fltlib.dll]'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-8257587686432637286</id><published>2011-06-26T02:14:00.001-07:00</published><updated>2011-06-26T02:14:10.689-07:00</updated><title type='text'>7 Fakta Menarik Kekayaan Bill Gates</title><content type='html'>&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;img src="http://4.bp.blogspot.com/-5b53-C3ADik/Tc4S97-Z3KI/AAAAAAAABog/Z01bVHoXtwA/s1600/bill-gates.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;1. Setiap saat, Bill Gates menjana pendapatan sebanyak US$250 (RM750) setiap SAAT. Iaitu bermaksud US$20 Million (RM60 Juta) dalam sehari, US$140 Million (RM420 Juta) dalam tempoh 1 Minggu dan US$7.8 Billion (RM23.4 Bilion) dalam setahun!&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;2. Jika US$1,000 tercicir dari poket Bill Gates, itu bukannya masalah besar bagi dia. Dia akan memperolehi jumlah tersebut dalam masa 4 Saat sahaja.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;3. Kerajaan Amerika menanggung hutang berjumlah 5.62 trillion. Jika Bill Gates sudi menjelaskan hutang tersebut, dia cuma memerlukan 10 tahun sahaja untuk melakukannya.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;4. Andai kata, dia mensedekahkan US$15 (RM45) kepada setiap orang di dunia ini, dia masih memiliki US$5Million (RM15 Juta) dalam simpanannya.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;5. Jika Bill Gates di anggap sebagai sebuah negara, dia merupakan negara yang ke 37 terkaya di dunia. Lebih kaya dari Malaysia ke? Not sure.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;6. Katakanlah Bill Gates menukarkan kesemua wangnya menjadi wang kertas US$1 dan menyusunkan wang tersebut dari bumi hingga ke bulan. Kita memerlukan perjalanan ulang-alik sebanyak 14 kali dan memakan masa tanpa henti selama 1,400 tahun serta memerlukan sejumlah 713 kapal terbang BOEING 747 untuk membawa wang tersebut.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;7. Usia Bill Gates sekarang dalam lingkungan 50an. Katakanlah dia boleh hidup 25 tahun lagi, dia perlu membelanjakan US$6.78 Million (RM20.34 Juta) dalam sehari utk menghabiskan wangnya sebelum dia meninggal dunia.&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-8257587686432637286?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/8257587686432637286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/06/7-fakta-menarik-kekayaan-bill-gates.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/8257587686432637286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/8257587686432637286'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/06/7-fakta-menarik-kekayaan-bill-gates.html' title='7 Fakta Menarik Kekayaan Bill Gates'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-5b53-C3ADik/Tc4S97-Z3KI/AAAAAAAABog/Z01bVHoXtwA/s72-c/bill-gates.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-1753469473024962259</id><published>2011-06-03T00:28:00.000-07:00</published><updated>2011-06-03T00:28:57.674-07:00</updated><title type='text'>Angry bird rio pc games [link update,easy step]</title><content type='html'>&lt;table border="0" cellpadding="0" cellspacing="0" class="tbl-border" style="background-color: #e1e1e1; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl1" height="185" style="background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;img src="http://2.bp.blogspot.com/_uGleMMFGlhI/TUNwjKuQvwI/AAAAAAAAACg/setq790dZBg/s1600/Angry%2BBirds%2BRio.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;angry bird rio&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;System requirements:&lt;br /&gt;&lt;br /&gt;OS Windows XP/Vista/7&lt;br /&gt;RAM 512MB&lt;br /&gt;CPU 1 GHz&lt;br /&gt;Graphic OpenGL 1.3 compatible&lt;br /&gt;Internet Connection required for activation&lt;/div&gt;&lt;/b&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;Installation&lt;br /&gt;&lt;br /&gt;1.Go to the activation folder and copy the AngryBirdsRio_patched.exe to game folder.&lt;br /&gt;&lt;br /&gt;2.Then go to C - Windows - System32 - drivers - etc folder. Open hosts file with NotPad.&lt;br /&gt;&lt;br /&gt;3.Add to 127.0.0.1 drm-pc.angrybirdsgame.com end of line. Save and close..&lt;br /&gt;&lt;br /&gt;4.Then again go to Activation folder and iws2.zip open. Extract to C:\Web.&lt;br /&gt;&lt;br /&gt;5.Go to activation folder and copy the www file to C:\Web folder inside.&lt;br /&gt;&lt;br /&gt;6.Then go to C:\Web folder start the iws.exe.&lt;br /&gt;&lt;br /&gt;7.Write to Public Folder: www and click the OK.&lt;br /&gt;&lt;br /&gt;8.Open the Internet browser write the 127.0.0.1/consumeKey/ and enter.&lt;br /&gt;&lt;br /&gt;It should be to write status ...=valid-key.&lt;br /&gt;&lt;br /&gt;9.Then again drm-pc.angrybirdsgame.com/consumeKey/ write to Internet browser and enter.&lt;br /&gt;&lt;br /&gt;Again It must says status ...=valid-key.&lt;br /&gt;&lt;br /&gt;10.Finally go to game folder from AngryBirdsRio_patched.exe to enter the game.&lt;br /&gt;&lt;br /&gt;11.Open the game and click the ACTIVATE FULL VERSION.&lt;br /&gt;&lt;br /&gt;12.Enter the any serial then click the Register..&lt;br /&gt;&lt;br /&gt;13.Enjoy !!&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;DOWNLOAD LINK:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; color: #555555;"&gt;&lt;table border="0" cellpadding="0" cellspacing="0" class="tbl-border" style="background-color: #e1e1e1; color: #555555;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="tbl1" height="185" style="background-color: white; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" valign="top"&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;a href="http://www.mediafire.com/?dpzaygm442ad2mt" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?dpzaygm442ad2mt&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-1753469473024962259?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/1753469473024962259/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/06/angry-bird-rio-pc-games-link-updateeasy.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1753469473024962259'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/1753469473024962259'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/06/angry-bird-rio-pc-games-link-updateeasy.html' title='Angry bird rio pc games [link update,easy step]'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_uGleMMFGlhI/TUNwjKuQvwI/AAAAAAAAACg/setq790dZBg/s72-c/Angry%2BBirds%2BRio.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-8180333550674125155</id><published>2011-05-27T22:19:00.000-07:00</published><updated>2011-05-27T22:19:09.204-07:00</updated><title type='text'>PAPAGO! X5 For Android (Malaysia and Singapore Version) MF</title><content type='html'>&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;img src="http://car1hk.files.wordpress.com/2009/12/papago-android-google-01.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;img src="http://cdn2.droidmill.com/media/market-media/com.mactiontech.X5IND.WWE_0.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;u&gt;&lt;b&gt;Application yg kne ada.&lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;1. Download File ni..&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;a href="http://www.mediafire.com/?4r1zb0050cc914y" style="text-decoration: none;" target="_blank"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;a) PAPAGO! X5 SEA (Mediafire)&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;a href="http://www.4shared.com/file/_ozoUUYI/libpapago.html" style="text-decoration: none;" target="_blank"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;b) Crack libpapago.so (4shared)&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="quote" style="background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;a href="http://www.mediafire.com/?c8pu5qedajqqqbj" style="text-decoration: none;" target="_blank"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;c) Latest Map (01/05/2011) (Mediafire)&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="color: orange;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;2. Selepas download PAPAGO! X5, extract file&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Papago X5 SEA.rar&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;3. Connect handphone pada PC..&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;4. Selepas extract semua, copy folder&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;"NaviSea"&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ke dlm SD Card&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;(sdcard/NaviSEA/)&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;5. Disconnect handphone daripada PC..&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;6. Install&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;"PAPAGO_X5SEA_0806_WWEMarket.apk"&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;(file ni ada skali dlm folder&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;"7482f3f6$SEA_ANDROID_X5_20100806".&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;7. Copy&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;"libpapago.so"&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;(dari link 4shared) ke dlm SD Card&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;(sdcard/NaviSEA/)&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;8. Uninstall&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;PAPAGO.apk&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;dan install balik dalam hanphone.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;9. Settle..&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;u&gt;&lt;b&gt;Update Map&lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;1. Download map (link kt atas&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;'c'&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;).&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;2. Connect handphone pada PC...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;3. Klik&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;MFM_PPG_110501C.exe&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;(yg telah didownload kt link atas) dan tekan next sehingga kuar yg nk install kt bahagian mana..klik browse n pilih SD card handphone anda..&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;(sdcard/NaviSEA/Maps/)&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;dan pilih Papago version&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;(Papago X5 for Android)&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;...(bagi pengguna android)&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;4. Settle..&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-8180333550674125155?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/8180333550674125155/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/05/papago-x5-for-android-malaysia-and.html#comment-form' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/8180333550674125155'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/8180333550674125155'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/05/papago-x5-for-android-malaysia-and.html' title='PAPAGO! X5 For Android (Malaysia and Singapore Version) MF'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-5539379133005168832</id><published>2011-05-27T21:53:00.000-07:00</published><updated>2011-05-27T21:53:39.053-07:00</updated><title type='text'>Sms Percuma v2.0</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, 'Trebuchet MS'; font-size: 12px; line-height: 18px;"&gt;&lt;a href="http://2.bp.blogspot.com/-FuHSimsKbpQ/Tdm3Hnw4OqI/AAAAAAAAAAw/qNbItVDV7KU/s1600/shotv20.gif" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #5a5a5a; font-size: 12px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline; vertical-align: baseline;"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5609716152427625122" src="http://2.bp.blogspot.com/-FuHSimsKbpQ/Tdm3Hnw4OqI/AAAAAAAAAAw/qNbItVDV7KU/s320/shotv20.gif" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; border-width: initial; cursor: pointer; float: left; font-size: 12px; height: 283px; margin-bottom: 10px; margin-left: 0pt; margin-right: 10px; margin-top: 0pt; max-width: 100%; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;###################&lt;br /&gt;Sms Percuma v2.0&lt;br /&gt;###################&lt;br /&gt;Sms Percuma v2.0 percuma merupakan Perisian kaedah alternatif sms selain menggunakan hp.&lt;br /&gt;Ianya adalah berdasarkan server website.&lt;br /&gt;Sms Percuma v2.0 berguna sekiranya anda perlu manghantar mesej tanpa menggunakan hp.&lt;br /&gt;Pastikan anda mempunyai talian internet untuk menggunakan Perisian ini.&lt;br /&gt;Semoga perisian kecil ini memberi manafaat kepada kita semua.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, 'Trebuchet MS'; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, 'Trebuchet MS'; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, 'Trebuchet MS'; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;DOWNLOAD LINK:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, 'Trebuchet MS'; font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: normal;"&gt;&lt;a href="http://www.mediafire.com/?h3n437l47i024yd" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?h3n437l47i024yd&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-5539379133005168832?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/5539379133005168832/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/05/sms-percuma-v20.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/5539379133005168832'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/5539379133005168832'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/05/sms-percuma-v20.html' title='Sms Percuma v2.0'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-FuHSimsKbpQ/Tdm3Hnw4OqI/AAAAAAAAAAw/qNbItVDV7KU/s72-c/shotv20.gif' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-7485468625145643184</id><published>2011-05-18T06:45:00.000-07:00</published><updated>2011-05-18T06:45:33.883-07:00</updated><title type='text'>maximum file compress.. 1.6g to 16mb!!!</title><content type='html'>&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Di sini saya cuba share file bleh compress maximum...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Download here :&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #555555;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #555555;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?y5rgic1ucdnr9n7"&gt;http://www.mediafire.com/?y5rgic1ucdnr9n7&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;u&gt;&lt;b&gt;Display Result&lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://i584.photobucket.com/albums/ss282/SonicUnder18/Website%20Icon%204%20animation/DisplayResult-1.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://i584.photobucket.com/albums/ss282/SonicUnder18/Website%20Icon%204%20animation/step1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Step1 : Klik&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Create New Archive&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://i584.photobucket.com/albums/ss282/SonicUnder18/Website%20Icon%204%20animation/step2.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Step 2 :&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Drag&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;file dari luar masuk dlm software ni atau&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;add file&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;atau&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;add folder&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;...&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Step 3 : Selepas masukkn file click&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;create archive&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://i584.photobucket.com/albums/ss282/SonicUnder18/Website%20Icon%204%20animation/step4.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Step 4 : Save file name..(nama yg berbeza dengan folder asal)&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://i584.photobucket.com/albums/ss282/SonicUnder18/Website%20Icon%204%20animation/step5.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Last : Tunggu sehingga complete.....&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-7485468625145643184?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/7485468625145643184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/05/maximum-file-compress-16g-to-16mb.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7485468625145643184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7485468625145643184'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/05/maximum-file-compress-16g-to-16mb.html' title='maximum file compress.. 1.6g to 16mb!!!'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://i584.photobucket.com/albums/ss282/SonicUnder18/Website%20Icon%204%20animation/th_DisplayResult-1.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-2147944800782487028</id><published>2011-05-05T06:11:00.001-07:00</published><updated>2011-05-05T06:11:28.742-07:00</updated><title type='text'>CaRa ToPuP RM10 TaHan LeBiH LaMer</title><content type='html'>&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;hmm..org kata pkai line lg save dr prepaid..tp korg msti trperanjat dgn ape yg bakal aku citerkan ni..&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;top-pup RM 10 tp blh tahan smpi 1 bulan tak kira la klau korg brgayut brape lama skalipun,hantar brape juta sms skalipun..&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;mgkin rezeki aku aritu,pg la jmpa makcik bau2 bacang ngn aku, dia ajr camne nk crossing account,&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;coz dia keje kt bhgn System Development Telecom.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;kekadag aku tlg gak memenber trdekat topup, tp amik untung sket aar..&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Ok, secara simplenya aku terangkan kat korg, tp INGAT JGN BUAT LBIH DR 3 KALI untuk 1 nombor, coz system akan auto detect &amp;amp; batalkan no korg..&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;timing nya, korg blh topup pertengahan ujung bulan between 25 hb keatas dlm kul 3am keats. coz dlm tempoh ni, system akan di selenggara, so ada loopholes. kene try&amp;amp;error..&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;1) beli topup RM 10... gesek &amp;amp; ready.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;2) korg type &amp;lt; ** REC 10 &amp;gt; , then send to 09901&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;3) tgu reply, kat skrin akn kuar satu serial number 6 digit, korg salin tau.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;4) pastu korg type &amp;lt; ** REC 10&amp;gt; &amp;lt;123456&amp;gt; msuk kan 6 digit td, send 09902&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;5) pastu diorag akn reply "insert ur topup num", so korg type 14 digit topup number yg korg beli cntohnya;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;lt;01234567891023&amp;gt; send to 09903&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;6) tak lama pastu diorg akn reply;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;"ingat ni company opah kau yg punya? msuk toilet pun kene byr 20sen, ni kau nk topup 10 hengget nk pkai seumur idup plak!! bnyk cantik muka kau"&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;hah.. tu aar, aku pun tak sngka diorg akn reply mcm tu.. kecik ati aku..&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;kdg2 diorg reply lebih 'kesat' dari di atas dlm pelbagai bahasa, blh menitik air mata beb..&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-2147944800782487028?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/2147944800782487028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/05/cara-topup-rm10-tahan-lebih-lamer.html#comment-form' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2147944800782487028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2147944800782487028'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/05/cara-topup-rm10-tahan-lebih-lamer.html' title='CaRa ToPuP RM10 TaHan LeBiH LaMer'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-4571663201453862639</id><published>2011-05-05T06:08:00.000-07:00</published><updated>2011-05-05T06:08:14.442-07:00</updated><title type='text'>101 Keyboard Shortcut</title><content type='html'>&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+C (Copy)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+X (Cut)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+V (Paste)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+Z (Undo)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;DELETE (Delete)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL while dragging an item (Copy the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F2 key (Rename the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+SHIFT with any of the arrow keys (Highlight a block of text)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+A (Select all)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F3 key (Search for a file or a folder)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+ENTER (View the properties for the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+F4 (Close the active item, or quit the active program)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+ENTER (Display the properties of the selected object)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+SPACEBAR (Open the shortcut menu for the active window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+TAB (Switch between the open items)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+ESC (Cycle through items in the order that they had been opened)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F6 key (Cycle through the screen elements in a window or on the desktop)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F4 key (Display the Address bar list in My Computer or Windows Explorer)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SHIFT+F10 (Display the shortcut menu for the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+SPACEBAR (Display the System menu for the active window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+ESC (Display the Start menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+Underlined letter in a menu name (Display the corresponding menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Underlined letter in a command name on an open menu (Perform the corresponding command)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F10 key (Activate the menu bar in the active program)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;RIGHT ARROW (Open the next menu to the right, or open a submenu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;LEFT ARROW (Open the next menu to the left, or close a submenu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F5 key (Update the active window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;BACKSPACE (View the folder one level up in My Computer or Windows Explorer)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ESC (Cancel the current task)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Dialog Box Keyboard Shortcuts&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+TAB (Move forward through the tabs)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+SHIFT+TAB (Move backward through the tabs)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;TAB (Move forward through the options)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SHIFT+TAB (Move backward through the options)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+Underlined letter (Perform the corresponding command or select the corresponding option)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ENTER (Perform the command for the active option or button)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SPACEBAR (Select or clear the check box if the active option is a check box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Arrow keys (Select a button if the active option is a group of option buttons)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F1 key (Display Help)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F4 key (Display the items in the active list)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Microsoft Natural Keyboard Shortcuts&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo (Display or hide the Start menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+BREAK (Display the System Properties dialog box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+D (Display the desktop)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+M (Minimize all of the windows)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+SHIFT+M (Restore the minimized windows)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+E (Open My Computer)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+F (Search for a file or a folder)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+Windows Logo+F (Search for computers)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+F1 (Display Windows Help)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+ L (Lock the keyboard)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+R (Open the Run dialog box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo+U (Open Utility Manager)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Accessibility Keyboard Shortcuts&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Right SHIFT for eight seconds (Switch FilterKeys either on or off)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SHIFT five times (Switch the StickyKeys either on or off)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;NUM LOCK for five seconds (Switch the ToggleKeys either on or off)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Logo +U (Open Utility Manager)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Explorer Keyboard Shortcuts&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;END (Display the bottom of the active window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;HOME (Display the top of the active window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;NUM LOCK+Plus sign (+) (Display the contents of the selected folder)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;NUM LOCK+Minus sign (-) (Collapse the selected folder)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Shortcut Keys for Character Map&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;After you double-click a character on the grid of characters, you can move through the grid by using the keyboard shortcuts:&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;RIGHT ARROW (Move to the right or to the beginning of the next line)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;LEFT ARROW (Move to the left or to the end of the previous line)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;UP ARROW (Move up one row)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;DOWN ARROW (Move down one row)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;PAGE UP (Move up one screen at a time)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;PAGE DOWN (Move down one screen at a time)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;HOME (Move to the beginning of the line)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;END (Move to the end of the line)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+HOME (Move to the first character)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+END (Move to the last character)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SPACEBAR (Switch between Enlarged and Normal mode when a character is selected)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Microsoft Management Console (MMC) Main Window Keyboard Shortcuts&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+O (Open a saved console)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+N (Open a new console)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+S (Save the open console)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+M (Add or remove a console item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+W (Open a new window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F5 key (Update the content of all console windows)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+SPACEBAR (Display the MMC window menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+F4 (Close the console)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+A (Display the Action menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+V (Display the View menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+F (Display the File menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+O (Display the Favorites menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;MMC Console Window Keyboard Shortcuts&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+P (Print the current page or active pane)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+Minus sign (-) (Display the window menu for the active console window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;SHIFT+F10 (Display the Action shortcut menu for the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F1 key (Open the Help topic, if any, for the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F5 key (Update the content of all console windows)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+F10 (Maximize the active console window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+F5 (Restore the active console window)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+ENTER (Display the Properties dialog box, if any, for the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;F2 key (Rename the selected item)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+F4 (Close the active console window. When a console has only one console window, this shortcut closes the console)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Remote Desktop Connection Navigation&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+ALT+END (Open the m*cro$oft Windows NT Security dialog box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+PAGE UP (Switch between programs from left to right)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+PAGE DOWN (Switch between programs from right to left)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+INSERT (Cycle through the programs in most recently used order)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+HOME (Display the Start menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;ALT+DELETE (Display the Windows menu)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+ALT+Minus sign (-) (Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+ALT+Plus sign (+) (Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer.)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Microsoft Internet Explorer Navigation&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+B (Open the Organize Favorites dialog box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+E (Open the Search bar)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+F (Start the Find utility)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+H (Open the History bar)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+I (Open the Favorites bar)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+L (Open the Open dialog box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+N (Start another instance of the browser with the same Web address)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+O (Open the Open dialog box, the same as CTRL+L)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+P (Open the Print dialog box)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+R (Update the current Web page)&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;CTRL+W (Close the current window)&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-4571663201453862639?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/4571663201453862639/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/05/101-keyboard-shortcut.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4571663201453862639'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4571663201453862639'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/05/101-keyboard-shortcut.html' title='101 Keyboard Shortcut'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-7858945368130843295</id><published>2011-05-05T05:53:00.000-07:00</published><updated>2011-05-05T05:53:54.357-07:00</updated><title type='text'>PHOTOMATIX PRO 4</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://i1116.photobucket.com/albums/k569/rj_664/tm282.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Photomatix Pro and Photomatix Light are stand-alone programs running on Windows and Mac OS X.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;A free Lightroom Plug-in makes it possible to access Photomatix Pro directly from Lightroom, if desired. Some of the features of Photomatix are also available as a Filter Plug-in of Photoshop CS2 or higher and an Edit Plug-in of Aperture 2 or higher.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;One license for Photomatix Pro costs US$99 and one license for Photomatix Light US$39.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Quotes from magazines reviews:&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;"Photomatix Pro is an excellent tool for creating high dynamic range photographs."&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Stuart Gripman, Mac Life, issue # 17, 2008&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Photomatix has all the features you need for producing HDR images, whether you are looking for a very natural look or the more extreme styles. The workflow is logical and easy to follow especially using the Lightroom integration.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Andrew Williams, Advanced Photographer, Feb 2011&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;"Using a trial download of Photomatix I came almost immediately to prefer it to CS3. Simpler and faster, I also thought it did a better job with mid-tones, shadows and saturation."&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Adam Woolfitt, The International Journal of Photographic Art &amp;amp; Practice, issue # 51, 2008&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;"Details Enhancer is the option that I and many others photographers use exclusively because of the many creative and interpretative controls."&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Tony Sweet, Shutterbug, issue # 454, 2008&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;"HDRsoft's Photomatix is currently the most sophisticated and robust, yet easy-to-use solution"&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;John Paul Caponigro, Digital Photo Pro, Jan/Feb 2009&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;"Make fantastic HDR with Photomatix."&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Paul Carroll, Digital Photo, issue # 102, 2008&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;"The Photomatix details enhancer does a better job of rendering shadow detail than the comparable local adaptation algorithm in Photoshop, and produces images with a distinctive ethereal appearance. Photomatix is polished software, backed by a helpful technical support team, and is highly recommended."&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Guy J Brown, Royal Photographic Society Journal, November 2006&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Benefits for professional photographers:&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;› Saving on lighting equipment&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;No need to acquire expensive lighting equipment -and carry it- when you shoot high contrast scenes. Just enable the Auto Exposure Bracketing feature of your camera, and let Photomatix merge your photos into an image with extended dynamic range.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;› Great pictures on cloudy days&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Shadowless hazy sunlight or an overcast sky usually results in dull-looking photographs. The tone mapping tool of Photomatix can turn them into great-looking images. Check out this image as an example.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;› Saving time in post-processing&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Photomatix Pro is designed for productivity -- automatic blending, unlimited stacking, easy comparison of results and batch processing save hours of masking and layers work in image editing programs.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;› Well exposed panoramas&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;A panoramic scene is almost always a high contrast scene -- you can't limit your view to areas with the same brightness when shooting a 360° panorama. By taking views under several exposures and processing them in Photomatix Pro, you can create a panorama that will show details in both the dark and bright areas of the scene. Photomatix Pro offers both exposure fusion (also known as exposure blending) and HDR tone mapping.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;FOR PEOPLE WHO LIKE HDR IMAGE..THIS NEW RELEASE..HOPE YOU ENJOY IT&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #f3f3f3; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;DOWNLOAD =&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?s9ysfz3e0ar5q03" style="text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?s9ysfz3e0ar5q03&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-7858945368130843295?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/7858945368130843295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/05/photomatix-pro-4.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7858945368130843295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/7858945368130843295'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/05/photomatix-pro-4.html' title='PHOTOMATIX PRO 4'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-8935812989072526882</id><published>2011-04-25T11:04:00.000-07:00</published><updated>2011-04-25T11:04:34.409-07:00</updated><title type='text'>rahsia hanfone....</title><content type='html'>&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;Tahukah anda bahawa telefon bimbit anda sedikit sebanyak boleh membantu dikala kecemasan.Banyak perkara yang boleh anda lakukan,antaranya : -&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;1) NOMBOR KECEMASAN&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;Sentiasa ingat bahawa nombor kecemasan untuk semua telefon adalah 112.Jika anda dalam kecemasan dan berada dikawasan tiada liputan untuk semua talian telefon bimbit yang anda gunakan, cuba dail nombor kecemasan 112.Ia boleh digunakan walaupun di kawasan yang tiada liputan dan lebih menarik lagi,ia boleh terus didail walaupun papan kekunci telefon bimbit anda dikunci ( Keypad lock )&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;2) KERETA TERKUNCI&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;Pernahkah anda tertinggal kunci kereta dalam kereta dan kereta anda ketika itu terkunci dari luar.Mesti anda lakukan pelbagai cara untuk mendapatkan kembali kunci bagi membuka semula kereta anda.Jangan risau,telefon bimbit boleh membantu,tapi bagi kereta yang menggunakan system penggera ( alarm ) sahaja . Caranya,cuba anda hubungi seseorang yang berada di rumah.Minta dia ambilkan kunci pendua kereta anda.Kemudian pegang telefon bimbit anda dari jarak kira-kira 30 sm ( satu kaki ) dari kereta yang terkunci itu.Minta pula keluarga atau teman di rumah menekan punat ‘ ON ‘ pada kunci pendua kereta dan pastikan dia menekan dengan mendekatkan pada telefon bimbitnya.Pasti kereta anda tidak terkunci lagi,malah ia boleh dilakukan dari jarak beratus-ratus kilometer dari tempat kereta anda berada.Kerana itu juga,penting untuk anda menyimpan kunci pendua atau meminta orang yang anda percayai untuk menyimpannya. Penting juga penggunaan telefon bimbit dalam keadaan sebegini.Kaedah ini memang berkesan kerana beberapa orang telah mencubanya.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;3) KUASA BATERI TERSEMBUNYI&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;Mungkin ramai tidak tahu,telefon bimbit yang telah kehabisan bateri masih boleh digunakan dalam keadaan kecemasan kerana ia mempunyai fungsi untuk menyimpan bateri tambahan.Bayangkan jika bateri telefon bimbit anda sudah terlalu lemah atau mati sedangkan anda perlu melakukan panggilan penting atau berada dalam kecemasan.Telefon bimbit jenis Nokia didatangkan dengan bateri simpanan.Untuk mengatifkannya, tekan kekunci ‘ *3370# ‘ . Telefon bimbit anda akan berjaya dihidupkan semula dan skrin telefon akan memberitahu telefon tentang penambahan kuasa bateri sebanyak 50 peratus.Kuasa tambahan ini juga akan dicas semula bila anda mengecas telefon bimbit anda.&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;4) TELEFON KENA CURI&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;&lt;br style="-webkit-box-shadow: none !important;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; line-height: 16px;"&gt;Bagaimana jika telefon bimbit anda dicuri.Anda boleh menjadikan ia tidak dapat diaktifkan dengan menekan nombor siri yang terdapat di telefon bimbit anda,sila dail *#06# dan 15 digit nombor siri telefon bimbit anda akan tertera di skrin.Nombor ini adalah unik untuk setiap telefon bimbit.Catatkan nombor siri ini dan simpannya di tempat Selamat.Bila telefon bimbit anda dicuri,anda boleh hubungi pusat servis telefon bimbit anda dan berikannya kod nombor siri tersebut.Mereka kemudiannya akan mengunci system dalam telefon bimbit anda dan sesiapa sahaja yang mencurinya pasti hampa kerana walaupun kad simnya telah ditukar,dia tidak akan berupaya mengaktifkan kembali telefon bimbit tersebut.Jadi, walaupun ia di curi,namun sekurang-kurangnya anda berpuas hati kerana si pencuri takkan boleh menggunakannya ataupun menjualnya&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-8935812989072526882?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/8935812989072526882/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/04/rahsia-hanfone.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/8935812989072526882'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/8935812989072526882'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/04/rahsia-hanfone.html' title='rahsia hanfone....'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-4138226730518194953</id><published>2011-04-25T10:53:00.000-07:00</published><updated>2011-04-25T10:53:36.675-07:00</updated><title type='text'>Unlimited Expired Untuk Pengguna Maxis Prepaid!!!</title><content type='html'>&lt;span class="Apple-style-span" style="color: rgb(58, 58, 58); font-family: Tahoma, Calibri, Verdana, Geneva, sans-serif; font-size: 13px; line-height: 15px; "&gt;&lt;strong style="-webkit-box-shadow: none !important; font-style: inherit; font-weight: inherit; "&gt;&lt;div class="postbody" style="-webkit-box-shadow: none !important; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 200px; padding-top: 0px; padding-right: 0px; padding-bottom: 1em; padding-left: 0px; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(197, 213, 231); background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(253, 238, 244); background-position: initial initial; background-repeat: initial initial; "&gt;&lt;div class="postrow" style="-webkit-box-shadow: none !important; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 5px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; overflow-x: auto; overflow-y: auto; font: normal normal normal 13px/normal Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; color: rgb(51, 51, 51); "&gt;&lt;div class="content" style="-webkit-box-shadow: none !important; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;div id="post_message_517803" style="-webkit-box-shadow: none !important; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;blockquote class="postcontent restore " style="-webkit-box-shadow: none !important; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; word-wrap: break-word; font-size: 14px; line-height: 16px; color: rgb(0, 0, 0); "&gt;&lt;div align="center" style="-webkit-box-shadow: none !important; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;a href="http://76.my/UserImages/Items/1004/05/cytech@1.jpg" target="_blank" style="-webkit-box-shadow: none !important; color: rgb(21, 27, 84); text-decoration: none; "&gt;&lt;img src="http://76.my/UserImages/Items/1004/05/cytech@1.jpg" border="0" alt="" style="-webkit-box-shadow: none !important; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; max-width: 800px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="-webkit-box-shadow: none !important; "&gt;Buat apa korang nak topup setiap kali Kredit nak tamat&lt;br /&gt;&lt;br /&gt;ni caranya:&lt;br /&gt;&lt;br /&gt;masuk *100#&lt;br /&gt;&lt;br /&gt;pastu tekan 8&lt;br /&gt;&lt;br /&gt;pastu tekan 2&lt;br /&gt;&lt;br /&gt;pastu tekan 1&lt;br /&gt;&lt;br /&gt;tekan 1 dan 1 dan seterusnya...sampai habis&lt;br /&gt;&lt;br /&gt;last sekali maxis hantar sms kat korang yang had kredit korang unlimited.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;nanti kalo da buat , masa check balance , keluar ni...&lt;br /&gt;&lt;br /&gt;baki : 10.00,&lt;br /&gt;tarikh luput:*sepanjang hayat &lt;br /&gt;&lt;br /&gt;selamat mencuba!!!!&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/strong&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-4138226730518194953?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.google.com/support/blogger/bin/answer.py?hl=en&amp;answer=143415' title='Unlimited Expired Untuk Pengguna Maxis Prepaid!!!'/><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/4138226730518194953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/04/unlimited-expired-untuk-pengguna-maxis.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4138226730518194953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4138226730518194953'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/04/unlimited-expired-untuk-pengguna-maxis.html' title='Unlimited Expired Untuk Pengguna Maxis Prepaid!!!'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-477867470890922868</id><published>2011-04-25T10:44:00.000-07:00</published><updated>2011-04-25T10:44:20.157-07:00</updated><title type='text'>T3Desk-3d windows software</title><content type='html'>&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;u&gt;&lt;b&gt;T3Desk-3d windows software&lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img196.imageshack.us/img196/661/tehnifsplash0.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img705.imageshack.us/img705/8774/t3desk3ddesktop300x171.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;FEATURES:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;-3D experience on your desktop which lets you zoom, flip and move the applications the way you want to.&lt;br /&gt;-You must have felt tired of opening up so many windows and then doing your work which consumes a lot of time.&lt;br /&gt;-It is a light weight resource where you can set your options for sound effects, zoom features, display,&lt;br /&gt;hot keys, transition effects, transparency effects, animation and the 3D initial angle&lt;br /&gt;-It works on windows 95/98/2000/NT/ME/XP/VISTA/Win7&lt;br /&gt;-The application appears in a 3Dmized window in 3 dimensions in a semi-transparent way&lt;br /&gt;-It is a light weight resource and works easily&lt;/div&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;cara nak guna:&lt;/b&gt;&lt;br /&gt;pas korang dah install &amp;amp; dah customize&lt;br /&gt;-korang leh buka satu folder...&lt;br /&gt;-tengok kat atas folder tu pada sebelah kanan,bersebelahan dengan minimize button.&lt;br /&gt;-korang klik pada lambang&amp;nbsp;&lt;img src="http://img812.imageshack.us/img812/5188/t3desk32x32icon.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;br /&gt;-folder tu akan jd 3D..yang lain2..korang leh customize sendiri..okie&lt;/div&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img683.imageshack.us/img683/2769/mydownload.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="quote" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; background-color: #f8f8f8; border-bottom-color: rgb(187, 187, 187); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(187, 187, 187); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(187, 187, 187); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(187, 187, 187); border-top-style: solid; border-top-width: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;"&gt;&lt;b&gt;&lt;a href="http://tehnif.com/Documents/T3Desk2010-Setup1009.zip" style="color: #005599; text-decoration: none;" target="_blank"&gt;CLICK HERE&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-477867470890922868?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/477867470890922868/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/04/t3desk-3d-windows-software.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/477867470890922868'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/477867470890922868'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/04/t3desk-3d-windows-software.html' title='T3Desk-3d windows software'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-5678614969079236726</id><published>2011-04-22T06:12:00.001-07:00</published><updated>2011-04-22T06:12:59.285-07:00</updated><title type='text'>Jom Belajar Create Virus [Virus-O-Matic]</title><content type='html'>&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img188.imageshack.us/img188/3060/virusmaker1.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img705.imageshack.us/img705/7011/virusmaker2.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span style="color: blue;"&gt;&lt;b&gt;:VIRUS MAKER:&lt;/b&gt;&lt;/span&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span style="color: red;"&gt;&lt;b&gt;[ 2.13MB ]&lt;/b&gt;&lt;/span&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img202.imageshack.us/img202/1316/virusmaker.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://www.syok.org/portal/images/smiley/afro.gif" /&gt;&lt;img src="http://www.syok.org/portal/images/smiley/afro.gif" /&gt;&lt;img src="http://www.syok.org/portal/images/smiley/afro.gif" /&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span style="color: red;"&gt;&lt;b&gt;DOWNLOAD LINK HERE:&lt;/b&gt;&lt;/span&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;&lt;a href="http://www.mediafire.com/?rwzydwd4mye" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?rwzydwd4mye&lt;/a&gt;&lt;/b&gt;&lt;/center&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;center style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;P/s : G.b hanya share apa yang G.b pernah guna.sesiapa tahu guna&lt;br /&gt;mende ni memang seronok untuk main-main sahaja..tapi risikonya&lt;br /&gt;tetap ada,so berhati2 ketika create,.jgn create terlampau bnyak function nanti memudaratkan.&lt;img src="http://www.syok.org/portal/images/smiley/cool.gif" /&gt;&lt;/span&gt;&lt;/center&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-5678614969079236726?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/5678614969079236726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/04/jom-belajar-create-virus-virus-o-matic.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/5678614969079236726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/5678614969079236726'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/04/jom-belajar-create-virus-virus-o-matic.html' title='Jom Belajar Create Virus [Virus-O-Matic]'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-4722943542621664479</id><published>2011-04-22T06:06:00.000-07:00</published><updated>2011-04-22T06:06:27.593-07:00</updated><title type='text'>Windows Movie Maker HD v6.0-Retail (Xp-Vista-Win7)</title><content type='html'>&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img211.imageshack.us/img211/641/scrwindowsmoviemaker.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;This one works on ALL Windows Vista/Seven systems.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Movie Maker and Movie Maker HD&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Compare editions&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows introduces a rich suite of tools that make it easier than ever to import, edit, manage, and share your digital home videosa33;including movies captured in the new high-definition video (HDV) format. Saving your videos to DVD and viewing them on stand-alone DVD players is a great way to share your creations with friends and family.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Movie Maker introduces an easy and intuitive new interface that will help you turn your video memories into compelling videos. The improved effects and multiple transition options in Windows Movie Maker, together with the high-end graphics power of today's PCs, can help turn just about anyone into a movie director.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Loaded with tools, geared for fun.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Importing and organizing&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;When you connect a digital video or still camera, AutoPlay will detect the device and display the import wizard for digital video or digital still cameras. With digital video cameras, you have the option to automatically import from tape and burn directly to DVD.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Windows Movie Maker is closely integrated with Windows Photo Gallery. Imported videos are added to the Videos folder and can be managed right from Photo Gallery. Videos can be previewed, rated, and tagged with labels and comments. You can easily find memories using the rich sorting and filtering features in Windows Photo Gallery. Looking for pictures and videos from your daughter's last birthday party? Simply select the appropriate tag in the navigation page or use integrated Instant Search to filter and display photos and videos.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Creating&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Making a home video from photos and videos you have on your PC is easya33;you can access Windows Movie Maker directly from All Programs. Or, if you're in Windows Photo Gallery, select your pictures and video and then choose Make a Movie. This launches Windows Movie Maker, imports your content, and generates an AutoMovie, complete with titles, credits, and transitions. Of course, you also have the option to manually import and manipulate your content to create a totally unique production with custom effects and transitions.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;High definition&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Millions of people are now enjoying high-definition (HD) television in their homes. Now, using the Home Premium and Ultimate Windows Vista editions, you can edit content from high-definition cameras that support the HDV format. You can also edit native MPEG-2 content, the format used in commercial-release DVDs. HD content can be published to Windows Media HD for playback on PCs and on the Xbox 360 video game and entertainment system. Windows Media HD can preserve high-definition quality while reducing overall file size, conserving hard-disk space.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;New video rendering technology enables you to preview HD content in full-screen view and at full HD resolution, if your hardware supports it. Using the power of your PC's graphics processing unit (GPU) enables Windows Movie Maker to render HD quality for smoother overall performance, adjusting the size and resolution to deliver the best quality possible for your hardware.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Sharing&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Ready to share your movie? Publish to your PC in Windows Media (with a choice of 720p and 1080p high-definition formats), scale it for sending via e-mail, or burn it to DVD using Windows DVD Maker. After you've created your movies in Windows Movie Maker, you can view and manage all of your media in Windows Photo Gallery, and even incorporate video into your picture slide shows. Windows Photo Gallery can handle vast quantities of information without running out of memory, so you can import all your videos alongside thousands of digital photos.&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;Link&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; color: #555555; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;a href="http://www.mediafire.com/?bvb44epcb3g46to" style="color: #005599; text-decoration: none;" target="_blank"&gt;http://www.mediafire.com/?bvb44epcb3g46to&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-4722943542621664479?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/4722943542621664479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/04/windows-movie-maker-hd-v60-retail-xp.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4722943542621664479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/4722943542621664479'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/04/windows-movie-maker-hd-v60-retail-xp.html' title='Windows Movie Maker HD v6.0-Retail (Xp-Vista-Win7)'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-2267287321183158281</id><published>2011-04-21T07:02:00.000-07:00</published><updated>2011-04-21T07:02:41.391-07:00</updated><title type='text'>Avira Antivirus Premium V10.00.643 - With Key Till 18-11-2012</title><content type='html'>&lt;h2 class="posttitle icon" style="display: block; font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 14px; font-weight: bold; font: normal normal bold 14px/normal Tahoma, Calibri, Verdana, Geneva, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 10px; padding-right: 10px; padding-top: 10px;"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;img alt="Cool" src="http://jiwang.org/images/icons/icon6.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" title="Cool" /&gt;&amp;nbsp;Avira Antivirus Premium V10.00.643 - With Key Till 18-11-2012&lt;/span&gt;&lt;/h2&gt;&lt;div id="ad_thread_first_post_content" style="float: right; font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="" height="1" src="http://admax.effectivemeasure.net/emnb_1_389591.gif" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; left: -5px; position: absolute;" width="1" /&gt;&lt;/div&gt;&lt;div class="content hasad" style="display: block; font-family: Verdana, Arial, Tahoma, Calibri, Geneva, sans-serif; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 300px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div id="post_message_394402" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;blockquote class="postcontent restore" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; word-wrap: break-word;"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;Avira Antivirus Premium V10.00.643 - With Key Till 18-11-2012&lt;br /&gt;&lt;/span&gt;&lt;div align="center" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;table class="ncode_imageresizer_warning" id="ncode_imageresizer_warning_2" style="-webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; background-attachment: initial; background-clip: initial; background-color: lemonchiffon; background-image: initial; background-origin: initial; border-bottom-color: rgb(234, 219, 157); border-bottom-style: solid; border-bottom-width: 1px; border-collapse: collapse; border-left-color: rgb(234, 219, 157); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(234, 219, 157); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(234, 219, 157); border-top-style: solid; border-top-width: 1px; cursor: pointer; font-size: inherit; margin-bottom: 3px; margin-top: 10px; width: 640px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="td1" style="border-bottom-color: rgb(0, 0, 0); border-bottom-style: solid; border-bottom-width: 0px; border-left-color: rgb(0, 0, 0); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(0, 0, 0); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(0, 0, 0); border-top-style: solid; border-top-width: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 0px; padding-top: 4px; text-decoration: none; vertical-align: middle;" width="20"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;img alt="" border="0" height="16" src="http://jiwang.org/images/misc/nCode.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; max-width: 800px;" width="16" /&gt;&lt;/span&gt;&lt;/td&gt;&lt;td class="td2" style="border-bottom-color: rgb(0, 0, 0); border-bottom-style: solid; border-bottom-width: 0px; border-left-color: rgb(0, 0, 0); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(0, 0, 0); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(0, 0, 0); border-top-style: solid; border-top-width: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; text-decoration: none; vertical-align: middle;"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;Click this bar to view the original image of 800x572px.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;img alt="" border="0" height="457" id="ncode_imageresizer_container_2" src="http://www.grinshare.com/img/BU04HP.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; max-width: 800px;" width="640" /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Avira AntiVir Personal FREE Antivirus was developed to be a reliable free antivirus solution, that constantly and rapidly scans your computer for malicious programs such as viruses, Trojans, backdoor programs, hoaxes, worms, dialers etc. Monitors every action executed by the user or the operating system and reacts promptly when a malicious program is detected.&lt;br /&gt;&lt;br /&gt;Avira AntiVir Personal is a comprehensive, easy to use antivirus program, designed to offer reliable free of charge virus protection to home-users, for personal use only, and is not for business or commercial use.&lt;br /&gt;&lt;br /&gt;Avira AntiVir Personal gives you the following functions:&lt;br /&gt;· Control Center for monitoring, administering and controlling the entire program&lt;br /&gt;· Central configuration with user-friendly standard and advanced options and context-sensitive help&lt;br /&gt;· Scanner (On-Demand Scan) with profile-controlled and configurable search for all known types of virus and malware&lt;br /&gt;· Integration into the Windows Vista User Account Control allows you to carry out tasks requiring administrator rights&lt;br /&gt;· Guard (On-Access Scan) for continuous monitoring of all file access attempts&lt;br /&gt;· Integrated quarantine management to isolate and process suspicious files&lt;br /&gt;· Rootkit protection for detecting hidden malware installed in your computer system (rootkits) (Only for 32-bit systems)&lt;br /&gt;· Direct access to detailed information on the detected viruses and malware via the Internet&lt;br /&gt;· Simple and quick updates to the program, virus definitions, and search engine through Single File Update and incremental VDF updates via a webserver on the Internet&lt;br /&gt;· Integrated Scheduler to plan one-off or recurring tasks, such as updates or test runs&lt;br /&gt;· Very high rates of virus and malware detection using innovative search technologies (search engines) and heuristic search processes&lt;br /&gt;· Detection of all common archive types, including detection of nested archives and smart extensions&lt;br /&gt;· High-performance multithreading function (simultaneous high-speed scanning of multiple files)&lt;br /&gt;&lt;br /&gt;NOTE:&lt;br /&gt;Avira AntiVir Personal is free for personal use only. A license key can be downloaded from here.&lt;br /&gt;&lt;br /&gt;Here are some key features of "Avira AntiVir Personal - Free Antivirus":&lt;br /&gt;&lt;br /&gt;· AntiVir protection against viruses, worms and Trojans AntiDialer protection against expensive dialers&lt;br /&gt;· AntiRootkit protection against hidden rootkits&lt;br /&gt;· Faster Scanning up to 20% faster&lt;br /&gt;· AntiPhishing protection against phishing&lt;br /&gt;· AntiSpyware protection against spyware and adware NetbookSupport for laptops with low resolution&lt;br /&gt;· QuickRemoval eliminates viruses at the push of a button&lt;br /&gt;&lt;br /&gt;Requirements:&lt;br /&gt;&lt;br /&gt;· At least 100 MB of free hard disk memory space (more if using Quarantine for temporary storage)&lt;br /&gt;· At least 192 MB RAM under Windows 2000/XP&lt;br /&gt;· At least 512 MB RAM under Windows Vista&lt;br /&gt;· For the installation of Avira AntiVir Personal: Administrator rights&lt;br /&gt;· For all installations: Windows Internet Explorer 6.0 or higher&lt;br /&gt;&lt;br /&gt;Limitations:&lt;br /&gt;&lt;br /&gt;· Not for Commercial or Business use&lt;br /&gt;· Nag screen&lt;br /&gt;&lt;br /&gt;What's New in This Release: [ read full changelog ]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;New Gui:&lt;br /&gt;· Avira AntiVir, version 10 will be released with a new graphical user interface that features a completely new set of icons as well as a new 3D navigation bar and a continuous background picture.&lt;br /&gt;&lt;br /&gt;· The new user interface keeps the proven elements of the old interface and the customer does not need to get into a new interface. However, the new icon set and the other new elements make it much easier for the customer to find his way around the program.&lt;br /&gt;&lt;br /&gt;Avira AntiVir ProActiv :&lt;br /&gt;· Avira AntiVir, version 10 is now equipped with a brand new host-based intrusion prevention system called Avira AntiVir ProActiv. AntiVir ProActiv constantly monitors the behaviour of the system in real-time and looks for unusual events.&lt;br /&gt;&lt;br /&gt;· An integrated rule-system is able to decide proactively if a certain event (or a combination of events) indicates that the system is currently under attack from a new or unknown malware.&lt;br /&gt;&lt;br /&gt;· If a rule matches the user is then able to decide what to do with this&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="center" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span style="color: white; font-family: 'Comic Sans MS';"&gt;&lt;br /&gt;Just Install and Use Key....&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="center" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;table class="ncode_imageresizer_warning" id="ncode_imageresizer_warning_1" style="-webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; background-attachment: initial; background-clip: initial; background-color: lemonchiffon; background-image: initial; background-origin: initial; border-bottom-color: rgb(234, 219, 157); border-bottom-style: solid; border-bottom-width: 1px; border-collapse: collapse; border-left-color: rgb(234, 219, 157); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(234, 219, 157); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(234, 219, 157); border-top-style: solid; border-top-width: 1px; cursor: pointer; font-size: inherit; margin-bottom: 3px; margin-top: 10px; width: 640px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="td1" style="border-bottom-color: rgb(0, 0, 0); border-bottom-style: solid; border-bottom-width: 0px; border-left-color: rgb(0, 0, 0); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(0, 0, 0); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(0, 0, 0); border-top-style: solid; border-top-width: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 0px; padding-top: 4px; text-decoration: none; vertical-align: middle;" width="20"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;img alt="" border="0" height="16" src="http://jiwang.org/images/misc/nCode.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; max-width: 800px;" width="16" /&gt;&lt;/span&gt;&lt;/td&gt;&lt;td class="td2" style="border-bottom-color: rgb(0, 0, 0); border-bottom-style: solid; border-bottom-width: 0px; border-left-color: rgb(0, 0, 0); border-left-style: solid; border-left-width: 0px; border-right-color: rgb(0, 0, 0); border-right-style: solid; border-right-width: 0px; border-top-color: rgb(0, 0, 0); border-top-style: solid; border-top-width: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; text-decoration: none; vertical-align: middle;"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div align="center" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;DOWNLOAD LINK:&lt;/span&gt;&lt;br /&gt;&lt;div class="bbcode_container" style="display: block; margin-bottom: 20px; margin-left: 20px; margin-right: 20px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;pre class="bbcode_code" style="background-attachment: initial; background-clip: initial; background-color: #f2f6f8; background-image: initial; background-origin: initial; background-repeat: repeat no-repeat; border-bottom-style: inset; border-bottom-width: 1px; border-color: initial; border-left-style: inset; border-left-width: 1px; border-right-style: inset; border-right-width: 1px; border-top-style: inset; border-top-width: 1px; direction: ltr; font-family: monospace; font-size: 12px; height: 36px; line-height: 12px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; overflow-x: scroll; overflow-y: scroll; padding-bottom: 6px; padding-left: 6px; padding-right: 6px; padding-top: 6px; text-align: left;"&gt;&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;a href="http://www.filesonic.com/file/793592964/Avira" rel="nofollow" style="text-decoration: none;" target="_blank"&gt;http://www.filesonic.com/file/793592964/Avira&lt;/a&gt; Antivirus 2011 Premium V10.00.643  - With Key Till 18-11-2012 &lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1463792172397228119-2267287321183158281?l=karisambal.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://karisambal.blogspot.com/feeds/2267287321183158281/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://karisambal.blogspot.com/2011/04/avira-antivirus-premium-v1000643-with.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2267287321183158281'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1463792172397228119/posts/default/2267287321183158281'/><link rel='alternate' type='text/html' href='http://karisambal.blogspot.com/2011/04/avira-antivirus-premium-v1000643-with.html' title='Avira Antivirus Premium V10.00.643 - With Key Till 18-11-2012'/><author><name>sharkcreep</name><uri>http://www.blogger.com/profile/11691539447255169170</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/_nyjWQjVyfG8/TT6Y7xDvxDI/AAAAAAAAAD8/Rmt26jOB61E/s220/35877_1443598403651_1043829355_1292851_6257038_n.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1463792172397228119.post-5342874693988036132</id><published>2011-04-21T06:55:00.000-07:00</published><updated>2011-04-21T06:55:17.379-07:00</updated><title type='text'>[IDM]Internet Download Manager 6.05b11+SND+BRD PATCH Rls:05-APRIL-2011|Working FileSonic|</title><content type='html'>&lt;span class="Apple-style-span" style="color: white;"&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;[IDM]Internet Download Manager 6.05b11+SND+BRD PATCH Rls:05-APRIL-2011|Working FileSonic|&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img850.imageshack.us/img850/7165/idm.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img215.imageshack.us/img215/3103/idmproof.jpg" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;img src="http://img413.imageshack.us/img413/2319/infoom.png" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&lt;b&gt;Internet Download Manager&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"&gt;has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download accelerators and managers that se
