function Navigate() {
/*	alert("inside here");*/
var number = document.favoritesJump.favorites.selectedIndex;
location.href = document.favoritesJump.favorites.options[number].value;
 }

function NavigateBanking() {
/*	alert("inside here");*/
var number = document.onlineBank.online.selectedIndex;
location.href = document.onlineBank.online.options[number].value;
 }
 
/* var hWindow; */
function closeWindow() 	{
		self.close();
 }
 
 function noenter() {
  return !(window.event && window.event.keyCode == 13); }
 
function checkSearchEntry(thisForm) {
    location.href = 'http://www.gsb.com/aspgsb/search.aspx?' +
                    'find=' + escape(myForm.txtSearchField.value);

	 
 }