﻿// JScript File

var postFunction;

function searchBoxEnter(theButton) 
{
    var theForm = document.forms['form1'];
    postFunction = theForm.onkeypress;
    theForm.onkeypress = "javascript:return WebForm_FireDefaultButton(event, theButton.name)";
}

function searchBoxExit()
{
    var theForm = document.forms['form1'];
    theForm.onkeypress = postFunction;
}

function goBack()
{
  window.history.back()
}
