(function() {
var f = document.getElementById('cse-search-box');
if (!f) {
f = document.getElementById('searchbox_demo');
}
if (f && f.unibox) {
var unibox = f.unibox;
var n = navigator;
var l = location;
if (n.platform == 'Win32') {
unibox.style.cssText = 'border: 1px solid #7e9db9; padding: 2px;';
}
var b = function() {
if (unibox.value == '') {
unibox.style.background = '#FFFFFF url(http:\x2F\x2Fwww.unitamil.net\x2Funitamil\x2Ffiles\x2Fimages\x2Ftamil_search.gif) left no-repeat';
}
};
var f = function() {
unibox.style.background = '#ffffff';
};
unibox.onfocus = f;
unibox.onblur = b;
if (!/[&?]unibox=[^&]/.test(l.search)) {
b();
}
}
})();