software komputer
Monday, February 14, 2011
Tuesday, February 8, 2011
Wednesday, February 2, 2011
Monday, January 31, 2011
++++++++++++++++++++++++++++++++++++++++++++++++
Iklan Gratis
Pasang Iklan Baris Promosi Produk Jasa & Bisnis Online
Terbukti iklan anda akan ada di peringkat teratas google
Kunjungi langsung http://iklanbari-s.com
Atau informasi lebih jelas email saya
di kwidodo74@gmail.com
+++++++++++++++++++++++++++++++++++++++++++++++++
Saturday, January 29, 2011
Saturday, January 22, 2011
Thursday, December 2, 2010
Subscribe to:
Posts (Atom)

(function() {
var searchenginearray = new Array();
var lg = new Array();
var favImg = new Array();
var lgSpan = new Array();
searchenginearray[0] = new Array(1, 'Google', 'q', 'google.', 'http://www.google.com/search?q=--keywords--', 'http://www.google.com/favicon.ico');
searchenginearray[1] = new Array(1, 'Ask', 'q', 'www.ask.', 'http://www.ask.com/web?q=--keywords--&qsrc=0&o=0', 'http://www.ask.com/favicon.ico');
searchenginearray[2] = new Array(0, 'Yahoo', 'p', 'yahoo.', 'http://search.yahoo.com/search/dir?p=--keywords--', 'http://www.yahoo.com/favicon.ico');
searchenginearray[3] = new Array(1, '百度', 'wd', 'www.baidu.', 'http://www.baidu.com/s?wd=--keywords--&ie=utf-8', 'http://www.baidu.com/favicon.ico');
searchenginearray[4] = new Array(1, 'Bing', 'q', 'bing.', 'http://www.bing.com/search?q=--keywords--', 'http://www.bing.com/favicon.ico');
searchenginearray[5] = new Array(1, '有道', 'q', 'www.youdao.', 'http://www.youdao.com/search?q=--keywords--&ue=utf8', 'http://shared.ydstatic.com/images/favicon.ico');
searchenginearray[6] = new Array(0, 'Clusty', 'query', 'clusty.', 'http://clusty.com/search?input-form=clusty-simple&v%3Asources=webplus&query=--keywords--', 'http://www.clusty.com/images/clusty-favicon.ico');
searchenginearray[7] = new Array(0, 'Wolfram', 'i', 'wolframalpha.', 'http://www01.wolframalpha.com/input/?i=--keywords--', 'http://www.wolframalpha.com/favicon.ico');
searchenginearray[8] = new Array(1, '谷歌', 'q', 'google.cn', 'http://www.google.cn/search?q=--keywords--', 'http://www.google.cn/favicon.ico');
// searchenginearray.sort();
var r = escape(document.referrer);
var u = escape(document.location.href);
var b = document.getElementById("searchSideBar");
var d = document.location.host;
var q = document.location.search;
var e = -1;
var t = '';
var toggle = 'right';
var togglew;
var togglewide = 120
var togglenarr = 25
var keywords = '';
var qvar;
var linkstyle = '';
var footerlinkstyle = "text-align: left; white-space: nowrap; text-decoration: none; background: none; margin: 0 10px 3px 3px; padding: 3px 8px 3px 8px; display: block; color: #00c; font-size: 80%;";
var bstyle = "position: fixed; top: 150px; right: 0; padding: 3px 0; background: #E5ECF9; border: 1px solid #c5cCd9; border-right: 0; width: " + togglenarr + "px; overflow: hidden; z-index: 10000";
for (i = 0; i < searchenginearray.length; i++) {
t = searchenginearray[i][3];
if (d.indexOf(t) != -1) {
e = i;
}
}
q = q.slice(1);
if ((q.length > 0) && (e != -1)) {
// There's a querystring and it's a search referral
if (e == 3) { // 如果是百度(列表中百度默认是“3”)
keywords = getBaiduWord();
}
else {
var qspairs = q.split('&');
for (k = 0; k < qspairs.length; k++) {
qvar = qspairs[k].split('=');
if (qvar[0] == searchenginearray[e][2]) {
qvar[0] = '';
keywords = qvar.join('=').slice(1);
}
}
}
}
function make_boxes() {
if ((!b) && (keywords != '')) {
b = document.createElement("div");
b.setAttribute("id","searchSideBar");
b.setAttribute("style", bstyle);
for (i = 0; i < searchenginearray.length; i++) {
if (searchenginearray[i][0] == 1) {
linkstyle = "text-align: left; white-space: nowrap; text-decoration: none; margin: 0 3px 3px 3px; padding: 3px 8px 3px 2px; display: block; color: #00c; font-size: 14px; outline: none; -moz-outline-style: none;";
favImgstyle = "background: url('" + searchenginearray[i][5] + "') 1px center no-repeat; height: 22px; width: 22px;"
lg[i] = document.createElement("a")
lg[i].setAttribute("href", searchenginearray[i][4].replace('--keywords--', keywords));
lg[i].setAttribute("target","nw");
lg[i].setAttribute("style", linkstyle);
lg[i].setAttribute("title", searchenginearray[i][1]);
favImg[i] = document.createElement("div")
favImg[i].setAttribute("style", favImgstyle);
lgSpan[i] = document.createElement("span")
addtext(lgSpan[i], searchenginearray[i][1]);
lgSpan[i].setAttribute("style", "margin-left: 25px;");
favImg[i].appendChild(lgSpan[i]);
lg[i].appendChild(favImg[i]);
b.appendChild(lg[i]);
}
}
lc = document.createElement("a")
lc.setAttribute("style", footerlinkstyle);
lc.setAttribute("href","#");
lc.setAttribute("onClick","return false;");
addtext(lc, '\u00BB');
b.appendChild(lc);
lc.style.textAlign = 'right';
document.body.appendChild(b);
lc.addEventListener("click", toggle_box, false);
return true;
}
}
function toggle_box() {
// Toggle tells you which way the box was last moved
togglew = eval(b.style.width.replace(/px/,""));
if (toggle == 'right') {
// for (i = togglew; i < 120; i++) {
// b.style.width = i + 'px';
// }
b.style.width = togglewide + 'px';
toggle = 'left';
} else {
// for (i = togglew; i > 25; i--) {
// b.style.width = i + 'px';
// }
b.style.width = togglenarr + 'px';
toggle = 'right';
}
}
function go() {
make_boxes();
}
function addtext(obj, text) {
var content = document.createTextNode(text);
obj.appendChild(content)
}
function addEvent(objObject, strEventName, fnHandler) {
// DOM-compliant way to add an event listener
if (objObject.addEventListener)
objObject.addEventListener(strEventName, fnHandler, false);
// IE/windows way to add an event listener
else if (objObject.attachEvent)
objObject.attachEvent("on" + strEventName, fnHandler);
}
function getBaiduWord() {
var key_tmp = document.getElementById("kw") || document.getElementsByName("wd").item(0);
var key_tmp2 = encodeURI(key_tmp.getAttribute("value"));
return key_tmp2;
}
go();
})();