Réponse acceptée !
Voici un exemple :
<head>
<script type="text/javascript">
function cherche()
{
var nom = document.getElementById("nom").value;
window.location.href = "http://www.google.fr/search?hl=fr&q="+nom+"&meta=";
}
</script>
</head>
<body>
Recherche google<br>
<input type="text" size=5 id="nom">
<input type="button" value="Chercher" onclick="cherche()">
</body>
@++