function google_mini_search() {	var query = document.getElementById('googleminiquery').value;	if (query!='')	{		var lalangue = document.getElementById('Langue').value;			var leseg='';		if (lalangue == "en")		{			leseg = 'cg';		}		else		{			leseg = 'gc';		}	     var url = '/www/v4/'+leseg+'.nsf' + '/fa_google_results?openform&frame='+parent.document.getElementById('Frame').value+'&q=' + query				parent.window.location = url;	}}/* Allow users to trigger the Search button by pressing the "Enter" key (#13) */function simulateEnterGoogleMini(evt) {	evt = (evt) ? evt : ((event) ? event : null);	if (evt) {		if (evt.keyCode=='13') {			/* Simulate a click on the "Go!" button */			setTimeout("google_mini_search();",1);			//google_mini_search();			/* Prevent the form from being submitted */			return false;		}	   	/* Allow the onKeyPress */		return true;		}}
