SEARCHURL='/info/search?q=';
function searchOnEnter(e) {
	var unicode=e.charCode? e.charCode : e.keyCode;
	if (unicode==13) //if enter key
	{	
		var sbox = e.target? e.target : e.srcElement;
		search(sbox.value);
		return false //disable keypress
	}
}
function search(q) {
	window.location=SEARCHURL+encodeURIComponent(q);
	return false;
}
