﻿$(document).ready(function() {
  
        $('#PageHeader1_TBsearchtext').bind('keypress', function(e) {
 
                if(e.keyCode==13){
				
				var tbValue = $('input:text#PageHeader1_TBsearchtext').val();
				
				var totalurl ='/results.aspx?searchfor=' + tbValue ;
                
                $(location).attr('href',totalurl);
                return false;

                }
        });

});

