﻿(function() 
{
    var f = document.getElementById('form1');//case-sensitive for cross-browser support
    var q = document.getElementById('tbQuery');//case-sensitive for cross-browser support
    if (f && q) 
    {           
        var n = navigator;
        var l = location;
        if (n.platform == 'Win32') 
        {
            q.style.cssText = 'border: 1px solid #7e9db9; padding: 2px;';
        }
        var b = function() 
        {
            if (q.value == '') 
            {
                q.style.background = '#FFFFFF url(http://www.olympic.edu/masterpage/UserControls/wm.gif) left no-repeat';
            }
        };
        var f = function() 
        {
            q.style.background = '#ffffff';
        };
        q.onfocus = f;
        q.onblur = b;
        if (!/[&?]q=[^&]/.test(l.search)) 
        {
            b();
        }
    }
}
)();  