
(function() {
var f = document.getElementById('searchForm');
if (f && f.p) {
var p = f.p;
var n = navigator;
var l = location;
if (n.platform == 'Win32') {
p.style.cssText = 'border: 1px solid #7e9db9; padding: 2px;';
}
var b = function() {
if (p.value == '') {
p.style.background = '#FFFFFF url(images/serimaj_yerel.gif) left no-repeat';
}
};
var f = function() {
p.style.background = '#ffffff';
};
p.onfocus = f;
p.onblur = b;
if (!/[&?]p=[^&]/.test(l.search)) {
b();
}
}
})();

