﻿
function saveQuery( val, qId ){

   var hdn = document.getElementById( qId );
   hdn.value = val;
}

function qFocus( e, str ){
   if( e.value == str )
      e.value = '';
}

function qBlur( e, str ){
   if( e.value == '' )
      e.value = str;
}

function ensureSearch( event ){

   if( event && event.keyCode == 13 ){ 
      doSearch( event );
      return false;
   }
}

function doSearch( event ){

      var url = '/Support/SearchResult.aspx?search=' + escape( document.getElementById( 'searchbox' ).value );
      //window.location.replace("' + url + '");

      var cmd = 'window.location.replace( "' + url + '" );';
      setTimeout( cmd, 700 );
      
      window.event.cancelBubble = true;
      return false;
}

/* ------------------- */

function switchLanguage( id ){
    id.valueOf = 'true';
    form.submit( );
}
