(function() {
  var f = document.getElementById('cse_search_box');
  if (!f) {
    f = document.getElementById('searchbox_demo');
  }
  if (f && f.q) {
    var q = 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:\x2F\x2Fwww.google.com\x2Fcoop\x2Fintl\x2Fen\x2Fimages\x2Fgoogle_custom_search_watermark.gif) left no-repeat';
        q.style.background = '#FFFFFF url(images\x2F\x2FsearchMotionPort.gif) left no-repeat';
        /*
        q.style.font = 'bold 12px arial';
        q.style.color = 'gray';
        q.style.fontVariant = 'small-caps';
        q.value = 'Search MotionPort';
        q.size = 20;
        */
      }
    };
    var f = function() {
      q.style.background = '#ffffff';
      /*
      q.style.font = 'normal 12px black arial';
      q.style.color = 'black';
      q.style.fontVariant = 'normal';
      q.value = '';
      q.size = 20;
      */
    };
    q.onfocus = f;
    q.onblur = b;
    if (!/[&?]q=[^&]/.test(l.search)) {
      b();
    }
  }
})();